Home
last modified time | relevance | path

Searched refs:m_contextHolder (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DV8WindowShell.cpp96 if (!m_contextHolder) in disposeContext()
100 v8::Handle<v8::Context> context = m_contextHolder->context(); in disposeContext()
106 m_contextHolder.clear(); in disposeContext()
119 if (!m_contextHolder) in clearForClose()
128 if (!m_contextHolder) in clearForNavigation()
134 v8::Handle<v8::Context> context = m_contextHolder->context(); in clearForNavigation()
185 if (m_contextHolder) in initializeIfNeeded()
193 if (!m_contextHolder) in initializeIfNeeded()
196 v8::Handle<v8::Context> context = m_contextHolder->context(); in initializeIfNeeded()
290 m_contextHolder = adoptPtr(new gin::ContextHolder(m_isolate)); in createContext()
[all …]
DV8WindowShell.h60 …v8::Local<v8::Context> context() const { return m_contextHolder ? m_contextHolder->context() : v8:… in context()
72 bool isContextInitialized() { return m_contextHolder; } in isContextInitialized()
112 OwnPtr<gin::ContextHolder> m_contextHolder; variable
DWorkerScriptController.h103 …v8::Local<v8::Context> context() { return m_contextHolder ? m_contextHolder->context() : v8::Local… in context()
118 OwnPtr<gin::ContextHolder> m_contextHolder; variable
DWorkerScriptController.cpp95 m_contextHolder.clear(); in disposeContext()
100 if (m_contextHolder) in initializeContextIfNeeded()
107 m_contextHolder = adoptPtr(new gin::ContextHolder(isolate())); in initializeContextIfNeeded()
108 m_contextHolder->SetContext(context); in initializeContextIfNeeded()
139 …v8::Handle<v8::Object> globalObject = v8::Handle<v8::Object>::Cast(m_contextHolder->context()->Glo… in initializeContextIfNeeded()
152 v8::Handle<v8::Context> context = m_contextHolder->context(); in evaluate()