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

Side by Side Diff: bindings/v8/ScriptController.cpp

Issue 118189: Upstream changes to run content scripts in their own world. (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/WebCore/
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 unified diff | Download patch
« no previous file with comments | « bindings/v8/ScriptController.h ('k') | bindings/v8/V8DOMMap.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2009 Apple Inc. All rights reserved. 3 * Copyright (C) 2009 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 return true; 171 return true;
172 } else if (activeProxy->inlineCode() && !activeProxy->timerCallback()) { 172 } else if (activeProxy->inlineCode() && !activeProxy->timerCallback()) {
173 // This is the <a href="javascript:window.open('...')> case -> we let it through. 173 // This is the <a href="javascript:window.open('...')> case -> we let it through.
174 return true; 174 return true;
175 } 175 }
176 176
177 // This is the <script>window.open(...)</script> case or a timer callback -> block it. 177 // This is the <script>window.open(...)</script> case or a timer callback -> block it.
178 return false; 178 return false;
179 } 179 }
180 180
181 void ScriptController::evaluateInNewWorld(const Vector<ScriptSourceCode>& source s)
182 {
183 m_proxy->evaluateInNewWorld(sources);
184 }
185
181 void ScriptController::evaluateInNewContext(const Vector<ScriptSourceCode>& sour ces) 186 void ScriptController::evaluateInNewContext(const Vector<ScriptSourceCode>& sour ces)
182 { 187 {
183 m_proxy->evaluateInNewContext(sources); 188 m_proxy->evaluateInNewContext(sources);
184 } 189 }
185 190
186 // Evaluate a script file in the environment of this proxy. 191 // Evaluate a script file in the environment of this proxy.
187 ScriptValue ScriptController::evaluate(const ScriptSourceCode& sourceCode) 192 ScriptValue ScriptController::evaluate(const ScriptSourceCode& sourceCode)
188 { 193 {
189 v8::HandleScope handleScope; 194 v8::HandleScope handleScope;
190 v8::Handle<v8::Context> context = V8Proxy::GetContext(m_proxy->frame()); 195 v8::Handle<v8::Context> context = V8Proxy::GetContext(m_proxy->frame());
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 { 387 {
383 notImplemented(); 388 notImplemented();
384 } 389 }
385 390
386 void ScriptController::updateDocument() 391 void ScriptController::updateDocument()
387 { 392 {
388 m_proxy->updateDocument(); 393 m_proxy->updateDocument();
389 } 394 }
390 395
391 } // namespace WebCore 396 } // namespace WebCore
OLDNEW
« no previous file with comments | « bindings/v8/ScriptController.h ('k') | bindings/v8/V8DOMMap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698