Add TryCatch block to avoid crashes of renderer
authorWonYoung Choi <wy80.choi@samsung.com>
Tue, 24 May 2016 02:48:39 +0000 (11:48 +0900)
committerWonYoung Choi <wy80.choi@samsung.com>
Tue, 24 May 2016 02:48:39 +0000 (11:48 +0900)
commit69a2d1698e5918c647253048762d10276ad8ce01
tree0f3d0cdc769505d4d6e8e0f158d9d37caf10af0c
parente75c344e22f9c4f3db6decf7e9accf6b1bb2fda8
Add TryCatch block to avoid crashes of renderer

When uncatched exception is thrown in the callback, TryCatch block
is necessary in calling the callback like below.

v8::TryCatch try_catch(isolate)
func->Call(..)
extensions/renderer/runtime_ipc_client.cc