Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: test/inspector-protocol/set-timeout-extension.h

Issue 2358943002: [inspector] added inspector protocol test runner (Closed)
Patch Set: a Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698