| OLD | NEW |
| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 | 72 |
| 73 static PassOwnPtrWillBeRawPtr<ScriptController> create(LocalFrame* frame) | 73 static PassOwnPtrWillBeRawPtr<ScriptController> create(LocalFrame* frame) |
| 74 { | 74 { |
| 75 return adoptPtrWillBeNoop(new ScriptController(frame)); | 75 return adoptPtrWillBeNoop(new ScriptController(frame)); |
| 76 } | 76 } |
| 77 | 77 |
| 78 ~ScriptController(); | 78 ~ScriptController(); |
| 79 void trace(Visitor*); | 79 void trace(Visitor*); |
| 80 | 80 |
| 81 bool initializeMainWorld(); | 81 bool initializeMainWorld(); |
| 82 bool isMainWorldInitialized(); | |
| 83 WindowProxy* windowProxy(DOMWrapperWorld&); | 82 WindowProxy* windowProxy(DOMWrapperWorld&); |
| 84 WindowProxy* existingWindowProxy(DOMWrapperWorld&); | 83 WindowProxy* existingWindowProxy(DOMWrapperWorld&); |
| 85 | 84 |
| 86 // Evaluate JavaScript in the main world. | 85 // Evaluate JavaScript in the main world. |
| 87 void executeScriptInMainWorld(const String&, ExecuteScriptPolicy = DoNotExec
uteScriptWhenScriptsDisabled); | 86 void executeScriptInMainWorld(const String&, ExecuteScriptPolicy = DoNotExec
uteScriptWhenScriptsDisabled); |
| 88 void executeScriptInMainWorld(const ScriptSourceCode&, AccessControlStatus =
NotSharableCrossOrigin, double* compilationFinishTime = 0); | 87 void executeScriptInMainWorld(const ScriptSourceCode&, AccessControlStatus =
NotSharableCrossOrigin, double* compilationFinishTime = 0); |
| 89 v8::Local<v8::Value> executeScriptInMainWorldAndReturnValue(const ScriptSour
ceCode&); | 88 v8::Local<v8::Value> executeScriptInMainWorldAndReturnValue(const ScriptSour
ceCode&); |
| 90 v8::Local<v8::Value> executeScriptAndReturnValue(v8::Handle<v8::Context>, co
nst ScriptSourceCode&, AccessControlStatus = NotSharableCrossOrigin, double* com
pilationFinishTime = 0); | 89 v8::Local<v8::Value> executeScriptAndReturnValue(v8::Handle<v8::Context>, co
nst ScriptSourceCode&, AccessControlStatus = NotSharableCrossOrigin, double* com
pilationFinishTime = 0); |
| 91 | 90 |
| 92 // Executes JavaScript in an isolated world. The script gets its own global
scope, | 91 // Executes JavaScript in an isolated world. The script gets its own global
scope, |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 // invalidate all sub-objects which are associated with that plugin. | 171 // invalidate all sub-objects which are associated with that plugin. |
| 173 // The frame keeps a NPObject reference for each item on the list. | 172 // The frame keeps a NPObject reference for each item on the list. |
| 174 PluginObjectMap m_pluginObjects; | 173 PluginObjectMap m_pluginObjects; |
| 175 | 174 |
| 176 NPObject* m_windowScriptNPObject; | 175 NPObject* m_windowScriptNPObject; |
| 177 }; | 176 }; |
| 178 | 177 |
| 179 } // namespace blink | 178 } // namespace blink |
| 180 | 179 |
| 181 #endif // ScriptController_h | 180 #endif // ScriptController_h |
| OLD | NEW |