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

Unified Diff: third_party/WebKit/Source/core/inspector/v8/V8InjectedScriptHost.h

Issue 1617393002: [DevTools] Not use with statement for evaluated console command (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix $1-$4, $_ Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/inspector/v8/V8InjectedScriptHost.h
diff --git a/third_party/WebKit/Source/core/inspector/v8/V8InjectedScriptHost.h b/third_party/WebKit/Source/core/inspector/v8/V8InjectedScriptHost.h
index 3db5f91cb0bae17dec36276a97e3c357ec44ec8b..3467d7466c7b5a5b3ae60b6913e62e633d044503 100644
--- a/third_party/WebKit/Source/core/inspector/v8/V8InjectedScriptHost.h
+++ b/third_party/WebKit/Source/core/inspector/v8/V8InjectedScriptHost.h
@@ -45,6 +45,9 @@ public:
static void bindCallback(const v8::FunctionCallbackInfo<v8::Value>&);
static void objectForIdCallback(const v8::FunctionCallbackInfo<v8::Value>&);
static void idToObjectGroupNameCallback(const v8::FunctionCallbackInfo<v8::Value>&);
+
+ static v8::Local<v8::Symbol> commandLineAPISymbol(v8::Isolate*);
+ static bool isCommandLineAPIMethod(const AtomicString& name);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698