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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp

Issue 2848653003: Add a DevTools command to create an isolated world for a given frame (Closed)
Patch Set: Rebased 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/core/inspector/InspectorPageAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
index e43f9c7389194a7b613c350553ddde8e307738b5..cc099a0ece5228f46d497f8c992c58385c34314c 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
@@ -909,6 +909,29 @@ Response InspectorPageAgent::getLayoutMetrics(
return Response::OK();
}
+protocol::Response InspectorPageAgent::createIsolatedWorld(
+ const String& frame_id,
+ Maybe<String> world_name,
+ Maybe<bool> grant_universal_access) {
+ LocalFrame* frame =
+ IdentifiersFactory::FrameById(inspected_frames_, frame_id);
+ if (!frame)
+ return Response::Error("No frame for given id found");
+
+ int world_id = frame->GetScriptController().CreateNewDInspectorIsolatedWorld(
+ world_name.fromMaybe(""));
+ if (world_id == DOMWrapperWorld::kInvalidWorldId)
+ return Response::Error("Could not create isolated world");
+
+ if (grant_universal_access.fromMaybe(false)) {
+ RefPtr<SecurityOrigin> security_origin =
+ frame->GetSecurityContext()->GetSecurityOrigin()->IsolatedCopy();
+ security_origin->GrantUniversalAccess();
+ DOMWrapperWorld::SetIsolatedWorldSecurityOrigin(world_id, security_origin);
+ }
+ return Response::OK();
+}
+
DEFINE_TRACE(InspectorPageAgent) {
visitor->Trace(inspected_frames_);
visitor->Trace(inspector_resource_content_loader_);

Powered by Google App Engine
This is Rietveld 408576698