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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h

Issue 1836653002: [DevTools] Wrap call frame with its injected script instead top injected script (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@compile-debugger-script
Patch Set: Created 4 years, 9 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/platform/v8_inspector/InjectedScriptManager.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h
index 85c343bb3ab3ca8f33c9b4b93a1b616c84047142..2f0a70aff73ca1c959c1038ead13b2492dd450f3 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h
@@ -62,21 +62,6 @@ public:
int discardInjectedScript(int);
void releaseObjectGroup(const String16& objectGroup);
void setCustomObjectFormatterEnabled(bool);
-
- class ScopedGlobalObjectExtension {
- PROTOCOL_DISALLOW_COPY(ScopedGlobalObjectExtension);
- public:
- // Pass InjectedScriptManager to affect all contexts which have access.
- ScopedGlobalObjectExtension(InjectedScript* current, InjectedScriptManager*, v8::MaybeLocal<v8::Object> extension);
- ~ScopedGlobalObjectExtension();
-
- private:
- void setOnGlobal(v8::Local<v8::Object> global, v8::Local<v8::Object> extension);
-
- v8::Local<v8::Symbol> m_symbol;
- v8::Local<v8::Context> m_context;
- Vector<v8::Local<v8::Value>> m_globals;
- };
private:
explicit InjectedScriptManager(V8DebuggerImpl*);

Powered by Google App Engine
This is Rietveld 408576698