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

Unified Diff: third_party/WebKit/public/web/WebFrame.h

Issue 2628053003: Remove extension group from DOMWrapperWorld. (Closed)
Patch Set: Fix GCCallbackTest Created 3 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/public/web/WebFrame.h
diff --git a/third_party/WebKit/public/web/WebFrame.h b/third_party/WebKit/public/web/WebFrame.h
index 85f2e2380244e036a1ad898922bbd9acf1fd3924..c12e89f35488be72bff2bd8b7eaf802d1e5d61bf 100644
--- a/third_party/WebKit/public/web/WebFrame.h
+++ b/third_party/WebKit/public/web/WebFrame.h
@@ -244,16 +244,12 @@ class WebFrame {
// The script gets its own global scope and its own prototypes for
// intrinsic JavaScript objects (String, Array, and so-on). It also
// gets its own wrappers for all DOM nodes and DOM constructors.
- // extensionGroup is an embedder-provided specifier that controls which
- // v8 extensions are loaded into the new context - see
- // blink::registerExtension for the corresponding specifier.
//
// worldID must be > 0 (as 0 represents the main world).
// worldID must be < EmbedderWorldIdLimit, high number used internally.
virtual void executeScriptInIsolatedWorld(int worldID,
const WebScriptSource* sources,
- unsigned numSources,
- int extensionGroup) = 0;
+ unsigned numSources) = 0;
// Associates an isolated world (see above for description) with a security
// origin. XMLHttpRequest instances used in that world will be considered
@@ -287,7 +283,6 @@ class WebFrame {
int worldID,
const WebScriptSource* sourcesIn,
unsigned numSources,
- int extensionGroup,
WebVector<v8::Local<v8::Value>>* results) = 0;
// Call the function with the given receiver and arguments, bypassing
« no previous file with comments | « third_party/WebKit/public/web/WebContentSettingsClient.h ('k') | third_party/WebKit/public/web/WebFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698