OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef V8_TEST_INSPECTOR_PROTOCOL_SET_TIMEOUT_EXTENSION_H_ |
| 6 #define V8_TEST_INSPECTOR_PROTOCOL_SET_TIMEOUT_EXTENSION_H_ |
| 7 |
| 8 #include "include/v8.h" |
| 9 |
| 10 namespace v8_inspector { |
| 11 |
| 12 class V8Inspector; |
| 13 |
| 14 class SetTimeoutExtension : public v8::Extension { |
| 15 public: |
| 16 SetTimeoutExtension() |
| 17 : v8::Extension("v8_inspector/setTimeout", |
| 18 "native function setTimeout();") {} |
| 19 |
| 20 virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate( |
| 21 v8::Isolate* isolate, v8::Local<v8::String> name); |
| 22 |
| 23 private: |
| 24 static void SetTimeout(const v8::FunctionCallbackInfo<v8::Value>& args); |
| 25 }; |
| 26 |
| 27 } // namespace v8_inspector |
| 28 |
| 29 #endif // V8_TEST_INSPECTOR_PROTOCOL_SET_TIMEOUT_EXTENSION_H_ |
OLD | NEW |