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

Unified Diff: third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.h

Issue 1859293002: [DevTools] Move Console to v8_inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 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/modules/worklet/WorkletGlobalScope.h
diff --git a/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.h b/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.h
index ebcae54123ebaf62d0beed225ff4c125b1bd3d64..85a3b10435bd6de147eb584c8a89cd7d8a2b9faf 100644
--- a/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.h
+++ b/third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.h
@@ -21,7 +21,6 @@ namespace blink {
class EventQueue;
class LocalFrame;
class WorkerOrWorkletScriptController;
-class WorkletConsole;
class MODULES_EXPORT WorkletGlobalScope : public GarbageCollectedFinalized<WorkletGlobalScope>, public SecurityContext, public MainThreadWorkletGlobalScope, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
@@ -32,9 +31,6 @@ public:
bool isWorkletGlobalScope() const final { return true; }
- // WorkletGlobalScope
- WorkletConsole* console();
-
// WorkerOrWorkletGlobalScope
ScriptWrappable* getScriptWrappable() const final { return const_cast<WorkletGlobalScope*>(this); }
WorkerOrWorkletScriptController* scriptController() final { return m_scriptController.get(); }
@@ -78,8 +74,6 @@ private:
EventTarget* errorEventTarget() final { return nullptr; }
void didUpdateSecurityOrigin() final { }
- mutable Member<WorkletConsole> m_console;
-
KURL m_url;
String m_userAgent;
Member<WorkerOrWorkletScriptController> m_scriptController;

Powered by Google App Engine
This is Rietveld 408576698