HomeSort by relevance Sort by last modified time
    Searched defs:DOMWrapperWorld (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DOMWrapperWorld.h 49 class DOMWrapperWorld : public RefCounted<DOMWrapperWorld> {
53 static PassRefPtr<DOMWrapperWorld> ensureIsolatedWorld(int worldId, int extensionGroup);
54 ~DOMWrapperWorld();
58 static void getAllWorlds(Vector<RefPtr<DOMWrapperWorld> >& worlds);
62 static DOMWrapperWorld* isolatedWorld(v8::Handle<v8::Context> context)
65 return static_cast<DOMWrapperWorld*>(context->GetAlignedPointerFromEmbedderData(v8ContextIsolatedWorld));
68 // Will return null if there is no DOMWrapperWorld for the current v8::Context
69 static DOMWrapperWorld* current();
110 static PassRefPtr<DOMWrapperWorld> createMainWorld()
    [all...]
DOMWrapperWorld.cpp 32 #include "bindings/v8/DOMWrapperWorld.h"
47 int DOMWrapperWorld::isolatedWorldCount = 0;
50 void DOMWrapperWorld::setInitializingWindow(bool initializing)
55 PassRefPtr<DOMWrapperWorld> DOMWrapperWorld::createMainWorld()
57 return adoptRef(new DOMWrapperWorld(mainWorldId, mainWorldExtensionGroup));
60 DOMWrapperWorld::DOMWrapperWorld(int worldId, int extensionGroup)
68 DOMWrapperWorld* DOMWrapperWorld::current(
    [all...]

Completed in 47 milliseconds