HomeSort by relevance Sort by last modified time
    Searched refs:DOMWrapperWorld (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DOMWrapperWorld.h 60 class DOMWrapperWorld : public RefCounted<DOMWrapperWorld> {
62 static PassRefPtr<DOMWrapperWorld> create(int worldId = -1, int extensionGroup = -1);
65 static PassRefPtr<DOMWrapperWorld> ensureIsolatedWorld(int worldId, int extensionGroup);
66 ~DOMWrapperWorld();
70 static void allWorldsInMainThread(Vector<RefPtr<DOMWrapperWorld> >& worlds);
72 static DOMWrapperWorld& world(v8::Handle<v8::Context> context)
77 static DOMWrapperWorld& current(v8::Isolate* isolate)
89 static DOMWrapperWorld& mainWorld();
116 static void setWorldOfInitializingWindow(DOMWrapperWorld* world
    [all...]
DOMWrapperWorld.cpp 32 #include "bindings/v8/DOMWrapperWorld.h"
48 unsigned DOMWrapperWorld::isolatedWorldCount = 0;
49 DOMWrapperWorld* DOMWrapperWorld::worldOfInitializingWindow = 0;
51 PassRefPtr<DOMWrapperWorld> DOMWrapperWorld::create(int worldId, int extensionGroup)
53 return adoptRef(new DOMWrapperWorld(worldId, extensionGroup));
56 DOMWrapperWorld::DOMWrapperWorld(int worldId, int extensionGroup)
63 DOMWrapperWorld& DOMWrapperWorld::mainWorld(
    [all...]
DOMDataStore.cpp 54 return DOMWrapperWorld::current(isolate).domDataStore();
V8WindowShell.h 34 #include "bindings/v8/DOMWrapperWorld.h"
58 static PassOwnPtr<V8WindowShell> create(LocalFrame*, DOMWrapperWorld&, v8::Isolate*);
82 DOMWrapperWorld& world() { return *m_world; }
85 V8WindowShell(LocalFrame*, PassRefPtr<DOMWrapperWorld>, v8::Isolate*);
114 RefPtr<DOMWrapperWorld> m_world;
ScriptState.h 16 class DOMWrapperWorld;
48 static PassRefPtr<ScriptState> create(v8::Handle<v8::Context>, PassRefPtr<DOMWrapperWorld>);
70 DOMWrapperWorld& world() const { return *m_world; }
88 ScriptState(v8::Handle<v8::Context>, PassRefPtr<DOMWrapperWorld>);
95 // This RefPtr doesn't cause a cycle because all persistent handles that DOMWrapperWorld holds are weak.
96 RefPtr<DOMWrapperWorld> m_world;
107 static PassRefPtr<ScriptStateForTesting> create(v8::Handle<v8::Context>, PassRefPtr<DOMWrapperWorld>);
113 ScriptStateForTesting(v8::Handle<v8::Context>, PassRefPtr<DOMWrapperWorld>);
ScriptState.cpp 14 PassRefPtr<ScriptState> ScriptState::create(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
30 ScriptState::ScriptState(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
87 return ScriptState::from(toV8Context(frame, DOMWrapperWorld::mainWorld()));
90 PassRefPtr<ScriptStateForTesting> ScriptStateForTesting::create(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
99 ScriptStateForTesting::ScriptStateForTesting(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
ScriptPreprocessor.cpp 49 RefPtr<DOMWrapperWorld> world = DOMWrapperWorld::ensureIsolatedWorld(ScriptPreprocessorIsolatedWorldId, DOMWrapperWorld::mainWorldExtensionGroup);
59 frame->script().executeScriptInIsolatedWorld(ScriptPreprocessorIsolatedWorldId, sources, DOMWrapperWorld::mainWorldExtensionGroup, &scriptResults);
V8LazyEventListener.h 58 virtual DOMWrapperWorld& world() const OVERRIDE { return DOMWrapperWorld::mainWorld(); }
WorkerScriptController.h 96 DOMWrapperWorld& world() const { return *m_world; }
111 RefPtr<DOMWrapperWorld> m_world;
ScriptController.h 49 class DOMWrapperWorld;
80 V8WindowShell* windowShell(DOMWrapperWorld&);
81 V8WindowShell* existingWindowShell(DOMWrapperWorld&);
ScriptValue.cpp 54 // if (&m_scriptState->world() == &DOMWrapperWorld::current(isolate()))
57 RELEASE_ASSERT(&m_scriptState->world() == &DOMWrapperWorld::current(isolate()));
ScriptController.cpp 95 , m_windowShell(V8WindowShell::create(frame, DOMWrapperWorld::mainWorld(), m_isolate))
201 return windowShell(DOMWrapperWorld::mainWorld())->isContextInitialized();
204 V8WindowShell* ScriptController::existingWindowShell(DOMWrapperWorld& world)
215 V8WindowShell* ScriptController::windowShell(DOMWrapperWorld& world)
240 DOMWrapperWorld& world = DOMWrapperWorld::current(m_isolate);
463 windowShell(DOMWrapperWorld::mainWorld())->updateDocument();
468 windowShell(DOMWrapperWorld::mainWorld())->namedItemAdded(doc, name);
473 windowShell(DOMWrapperWorld::mainWorld())->namedItemRemoved(doc, name);
595 RefPtr<DOMWrapperWorld> world = DOMWrapperWorld::ensureIsolatedWorld(worldID, extensionGroup)
    [all...]
V8AbstractEventListener.h 34 #include "bindings/v8/DOMWrapperWorld.h"
113 virtual DOMWrapperWorld& world() const { return scriptState()->world(); }
DOMDataStore.h 35 #include "bindings/v8/DOMWrapperWorld.h"
61 return !DOMWrapperWorld::isolatedWorldsExist()
81 return DOMWrapperWorld::mainWorld().domDataStore().m_wrapperMap.setReturnValueFrom(returnValue, V8T::toInternalPointer(object));
101 return DOMWrapperWorld::mainWorld().domDataStore().m_wrapperMap.setReturnValueFrom(returnValue, V8T::toInternalPointer(object));
V8WindowShell.cpp 38 #include "bindings/v8/DOMWrapperWorld.h"
82 PassOwnPtr<V8WindowShell> V8WindowShell::create(LocalFrame* frame, DOMWrapperWorld& world, v8::Isolate* isolate)
87 V8WindowShell::V8WindowShell(LocalFrame* frame, PassRefPtr<DOMWrapperWorld> world, v8::Isolate* isolate)
183 DOMWrapperWorld::setWorldOfInitializingWindow(m_world.get());
185 DOMWrapperWorld::setWorldOfInitializingWindow(0);
214 V8WindowShell* mainWindow = m_frame->script().existingWindowShell(DOMWrapperWorld::mainWorld());
V8DOMConfiguration.cpp 46 bool isMainWorld = DOMWrapperWorld::current(isolate).isMainWorld();
83 bool isMainWorld = DOMWrapperWorld::current(isolate).isMainWorld();
V8Initializer.cpp 34 #include "bindings/v8/DOMWrapperWorld.h"
92 if (DOMWrapperWorld::windowIsBeingInitialized())
226 RefPtrWillBeRawPtr<ErrorEvent> event = ErrorEvent::create(errorMessage, sourceURL, message->GetLineNumber(), message->GetStartColumn() + 1, &DOMWrapperWorld::current(isolate));
  /external/chromium_org/third_party/WebKit/Source/core/events/
ErrorEvent.h 34 #include "bindings/v8/DOMWrapperWorld.h"
56 static PassRefPtrWillBeRawPtr<ErrorEvent> create(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, DOMWrapperWorld* world)
64 static PassRefPtrWillBeRawPtr<ErrorEvent> createSanitizedError(DOMWrapperWorld* world)
81 DOMWrapperWorld* world() const { return m_world.get(); }
89 ErrorEvent(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, DOMWrapperWorld*);
98 RefPtr<DOMWrapperWorld> m_world;
EventListener.h 28 class DOMWrapperWorld;
ErrorEvent.cpp 58 , m_world(DOMWrapperWorld::current(v8::Isolate::GetCurrent()))
63 ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, DOMWrapperWorld* world)
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLDocumentCustom.cpp 61 v8::Local<v8::Context> context = toV8Context(frame.get(), DOMWrapperWorld::current(info.GetIsolate()));
V8CustomEventCustom.cpp 94 if (DOMWrapperWorld::current(info.GetIsolate()).isIsolatedWorld())
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInspectorAgent.h 40 class DOMWrapperWorld;
InspectorController.h 43 class DOMWrapperWorld;
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceDocument.cpp 98 DOMWrapperWorld& world = DOMWrapperWorld::current(isolate);

Completed in 373 milliseconds

1 2 3 4