| Index: test/inspector/task-runner.h
|
| diff --git a/test/inspector/task-runner.h b/test/inspector/task-runner.h
|
| index 4a3f2e5baf73b5e7facf30c1965b7d62ccf1066d..88c36543d3785b61c82dd7b808eb353b37c53a9a 100644
|
| --- a/test/inspector/task-runner.h
|
| +++ b/test/inspector/task-runner.h
|
| @@ -23,8 +23,8 @@ class TaskRunner : public v8::base::Thread {
|
| const v8::Global<v8::Context>& context) = 0;
|
| };
|
|
|
| - explicit TaskRunner(v8::ExtensionConfiguration* extensions,
|
| - v8::base::Semaphore* ready_semaphore);
|
| + TaskRunner(v8::ExtensionConfiguration* extensions, bool catch_exceptions,
|
| + v8::base::Semaphore* ready_semaphore);
|
| virtual ~TaskRunner();
|
|
|
| // Thread implementation.
|
| @@ -44,6 +44,7 @@ class TaskRunner : public v8::base::Thread {
|
| Task* GetNext(bool only_protocol);
|
|
|
| v8::ExtensionConfiguration* extensions_;
|
| + bool catch_exceptions_;
|
| v8::base::Semaphore* ready_semaphore_;
|
|
|
| v8::Isolate* isolate_;
|
|
|