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

Unified Diff: webkit/glue/webframe_impl.cc

Issue 118188: Run content scripts in their own isolated world. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 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
« no previous file with comments | « chrome/browser/renderer_host/browser_render_process_host.cc ('k') | webkit/port/bindings/v8/v8_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webframe_impl.cc
===================================================================
--- webkit/glue/webframe_impl.cc (revision 18892)
+++ webkit/glue/webframe_impl.cc (working copy)
@@ -131,7 +131,9 @@
#undef LOG
+#include "base/base_switches.h"
#include "base/basictypes.h"
+#include "base/command_line.h"
#include "base/gfx/rect.h"
#include "base/logging.h"
#include "base/message_loop.h"
@@ -1695,7 +1697,10 @@
sources_in[i].startLine));
}
- frame_->script()->evaluateInNewContext(sources);
+ if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kIsolatedWorld))
+ frame_->script()->evaluateInNewWorld(sources);
+ else
+ frame_->script()->evaluateInNewContext(sources);
}
std::wstring WebFrameImpl::GetName() {
« no previous file with comments | « chrome/browser/renderer_host/browser_render_process_host.cc ('k') | webkit/port/bindings/v8/v8_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698