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

Unified Diff: third_party/WebKit/Source/platform/bindings/DOMWrapperWorld.cpp

Issue 2902953003: Revert of Allow headless TabSocket in isolated worlds & remove obsolete logic (Closed)
Patch Set: Created 3 years, 7 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/bindings/DOMWrapperWorld.cpp
diff --git a/third_party/WebKit/Source/platform/bindings/DOMWrapperWorld.cpp b/third_party/WebKit/Source/platform/bindings/DOMWrapperWorld.cpp
index 80cb8da7b9953f948ee274af30595647e00d4feb..63623c5a74680009a970cd8465f9d82d494d0aa8 100644
--- a/third_party/WebKit/Source/platform/bindings/DOMWrapperWorld.cpp
+++ b/third_party/WebKit/Source/platform/bindings/DOMWrapperWorld.cpp
@@ -277,9 +277,9 @@
case WorldType::kInspectorIsolated: {
DCHECK(IsMainThread());
static int next_devtools_isolated_world_id =
- IsolatedWorldId::kDevToolsFirstIsolatedWorldId;
+ WorldId::kDevToolsFirstIsolatedWorldId;
if (next_devtools_isolated_world_id >
- IsolatedWorldId::kDevToolsLastIsolatedWorldId)
+ WorldId::kDevToolsLastIsolatedWorldId)
return WorldId::kInvalidWorldId;
return next_devtools_isolated_world_id++;
}

Powered by Google App Engine
This is Rietveld 408576698