Home
last modified time | relevance | path

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

/third_party/cef/libcef/renderer/
Dv8_impl.h161 class CefV8ContextImpl : public CefV8Context {
163 CefV8ContextImpl(v8::Isolate* isolate, v8::Local<v8::Context> context);
165 CefV8ContextImpl(const CefV8ContextImpl&) = delete;
166 CefV8ContextImpl& operator=(const CefV8ContextImpl&) = delete;
168 ~CefV8ContextImpl() override;
194 IMPLEMENT_REFCOUNTING(CefV8ContextImpl);
Dv8_impl.cc793 static_cast<CefV8ContextImpl*>(context.get())->GetV8Context(), message); in MessageListenerCallbackImpl()
922 context = new CefV8ContextImpl(isolate, isolate->GetCurrentContext()); in GetCurrentContext()
935 new CefV8ContextImpl(isolate, isolate->GetEnteredOrMicrotaskContext()); in GetEnteredContext()
949 CefV8ContextImpl::CefV8ContextImpl(v8::Isolate* isolate, in CefV8ContextImpl() function in CefV8ContextImpl
953 CefV8ContextImpl::~CefV8ContextImpl() { in ~CefV8ContextImpl()
957 CefRefPtr<CefTaskRunner> CefV8ContextImpl::GetTaskRunner() { in GetTaskRunner()
961 bool CefV8ContextImpl::IsValid() { in IsValid()
965 CefRefPtr<CefBrowser> CefV8ContextImpl::GetBrowser() { in GetBrowser()
976 CefRefPtr<CefFrame> CefV8ContextImpl::GetFrame() { in GetFrame()
992 CefRefPtr<CefV8Value> CefV8ContextImpl::GetGlobal() { in GetGlobal()
[all …]
Drender_frame_observer.cc145 CefRefPtr<CefV8Context> contextPtr(new CefV8ContextImpl(isolate, context)); in DidCreateScriptContext()
177 new CefV8ContextImpl(isolate, context)); in WillReleaseScriptContext()
Dframe_impl.cc222 return new CefV8ContextImpl(isolate, frame_->MainWorldScriptContext()); in GetV8Context()