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

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

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 | « no previous file | bindings/v8/ScriptController.cpp » ('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 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 57
58 // FIXME: V8Proxy should either be folded into ScriptController 58 // FIXME: V8Proxy should either be folded into ScriptController
59 // or this accessor should be made JSProxy* 59 // or this accessor should be made JSProxy*
60 V8Proxy* proxy() { return m_proxy.get(); } 60 V8Proxy* proxy() { return m_proxy.get(); }
61 61
62 // Evaluate a script file in the environment of this proxy. 62 // Evaluate a script file in the environment of this proxy.
63 // If succeeded, 'succ' is set to true and result is returned 63 // If succeeded, 'succ' is set to true and result is returned
64 // as a string. 64 // as a string.
65 ScriptValue evaluate(const ScriptSourceCode&); 65 ScriptValue evaluate(const ScriptSourceCode&);
66 66
67 // Executes JavaScript in a new world associated with the web frame. The
68 // script gets its own global scope, its own prototypes for intrinsic
69 // JavaScript objects (String, Array, and so-on), and its own wrappers f or
70 // all DOM nodes and DOM constructors.
71 void evaluateInNewWorld(const Vector<ScriptSourceCode>&);
72
67 // Executes JavaScript in a new context associated with the web frame. T he 73 // Executes JavaScript in a new context associated with the web frame. T he
68 // script gets its own global scope and its own prototypes for intrinsic 74 // script gets its own global scope and its own prototypes for intrinsic
69 // JavaScript objects (String, Array, and so-on). It shares the wrappers for 75 // JavaScript objects (String, Array, and so-on). It shares the wrappers for
70 // all DOM nodes and DOM constructors. 76 // all DOM nodes and DOM constructors.
71 void evaluateInNewContext(const Vector<ScriptSourceCode>&); 77 void evaluateInNewContext(const Vector<ScriptSourceCode>&);
72 78
73 // JSC has a WindowShell object, but for V8, the ScriptController 79 // JSC has a WindowShell object, but for V8, the ScriptController
74 // is the WindowShell. 80 // is the WindowShell.
75 bool haveWindowShell() const { return true; } 81 bool haveWindowShell() const { return true; }
76 82
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 // The frame keeps a NPObject reference for each item on the list. 164 // The frame keeps a NPObject reference for each item on the list.
159 PluginObjectMap m_pluginObjects; 165 PluginObjectMap m_pluginObjects;
160 #if ENABLE(NETSCAPE_PLUGIN_API) 166 #if ENABLE(NETSCAPE_PLUGIN_API)
161 NPObject* m_windowScriptNPObject; 167 NPObject* m_windowScriptNPObject;
162 #endif 168 #endif
163 }; 169 };
164 170
165 } // namespace WebCore 171 } // namespace WebCore
166 172
167 #endif // ScriptController_h 173 #endif // ScriptController_h
OLDNEW
« no previous file with comments | « no previous file | bindings/v8/ScriptController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698