Searched refs:CefFrameImpl (Results 1 – 9 of 9) sorted by relevance
/third_party/cef/libcef/renderer/ |
D | frame_impl.cc | 64 CefFrameImpl::CefFrameImpl(CefBrowserImpl* browser, in CefFrameImpl() function in CefFrameImpl 69 CefFrameImpl::~CefFrameImpl() {} in ~CefFrameImpl() 71 bool CefFrameImpl::IsValid() { in IsValid() 77 void CefFrameImpl::Undo() { in Undo() 81 void CefFrameImpl::Redo() { in Redo() 85 void CefFrameImpl::Cut() { in Cut() 89 void CefFrameImpl::Copy() { in Copy() 93 void CefFrameImpl::Paste() { in Paste() 97 void CefFrameImpl::Delete() { in Delete() 101 void CefFrameImpl::SelectAll() { in SelectAll() [all …]
|
D | frame_impl.h | 40 class CefFrameImpl : public CefFrame, public cef::mojom::RenderFrame { 42 CefFrameImpl(CefBrowserImpl* browser, 46 CefFrameImpl(const CefFrameImpl&) = delete; 47 CefFrameImpl& operator=(const CefFrameImpl&) = delete; 49 ~CefFrameImpl() override; 171 base::WeakPtrFactory<CefFrameImpl> weak_ptr_factory_{this}; 173 IMPLEMENT_REFCOUNTING(CefFrameImpl);
|
D | render_frame_observer.h | 18 class CefFrameImpl; variable 54 void AttachFrame(CefFrameImpl* frame); 60 CefFrameImpl* frame_ = nullptr;
|
D | browser_impl.h | 80 CefRefPtr<CefFrameImpl> GetWebFrameImpl(blink::WebLocalFrame* frame); 81 CefRefPtr<CefFrameImpl> GetWebFrameImpl(int64_t frame_id); 105 using FrameMap = std::map<int64, CefRefPtr<CefFrameImpl>>;
|
D | render_frame_observer.cc | 96 CefRefPtr<CefFrameImpl> framePtr = browserPtr->GetWebFrameImpl(frame); in FocusedElementChanged() 136 CefRefPtr<CefFrameImpl> framePtr = browserPtr->GetWebFrameImpl(frame); in DidCreateScriptContext() 166 CefRefPtr<CefFrameImpl> framePtr = browserPtr->GetWebFrameImpl(frame); in WillReleaseScriptContext() 204 void CefRenderFrameObserver::AttachFrame(CefFrameImpl* frame) { in AttachFrame()
|
D | browser_impl.cc | 280 CefRefPtr<CefFrameImpl> CefBrowserImpl::GetWebFrameImpl( in GetWebFrameImpl() 290 CefRefPtr<CefFrameImpl> framePtr(new CefFrameImpl(this, frame, frame_id)); in GetWebFrameImpl() 296 CefRefPtr<CefFrameImpl> CefBrowserImpl::GetWebFrameImpl(int64_t frame_id) { in GetWebFrameImpl()
|
D | render_urlrequest_impl.cc | 147 auto frame_impl = static_cast<CefFrameImpl*>(frame_.get()); in Start()
|
/third_party/chromium/patch/ |
D | 0004-3.2-Beta5.patch | 8658 @@ -128,6 +152,10 @@ void CefFrameImpl::ViewSource() { 8662 +void CefFrameImpl::GetImages(CefRefPtr<CefGetImagesCallback> callback) { 8666 void CefFrameImpl::GetSource(CefRefPtr<CefStringVisitor> visitor) { 8669 @@ -778,6 +806,10 @@ void CefFrameImpl::SendTouchEvent(cef::mojom::TouchEventParamsPtr params) { 8673 +void CefFrameImpl::RemoveCache() { 8677 void CefFrameImpl::SetInitialScale(float initialScale) { 8680 @@ -788,44 +820,48 @@ void CefFrameImpl::SetInitialScale(float initialScale) { 8686 +void CefFrameImpl::SetJsOnlineProperty(bool network_up) { 8691 void CefFrameImpl::PutZoomingForTextFactor(float factor) { 8707 void CefFrameImpl::GetImageForContextNode() { [all …]
|
D | 0003-3.2-Beta3-1115.patch | 24083 CefFrameImpl::CefFrameImpl(CefBrowserImpl* browser, 24084 @@ -684,6 +706,256 @@ void CefFrameImpl::MoveOrResizeStarted() { 24089 +void CefFrameImpl::LoadHeaderUrl(const CefString& url, 24103 +void CefFrameImpl::OnFocusedNodeChanged(const blink::WebElement& element) { 24128 +void CefFrameImpl::SendTouchEvent(cef::mojom::TouchEventParamsPtr params) { 24160 +void CefFrameImpl::SetInitialScale(float initialScale) { 24171 +void CefFrameImpl::PutZoomingForTextFactor(float factor) { 24184 +void CefFrameImpl::GetImageForContextNode() { 24227 +GURL CefFrameImpl::GetAbsoluteUrl(const blink::WebNode& node, 24233 +GURL CefFrameImpl::GetAbsoluteSrcUrl(const blink::WebElement& element) { [all …]
|