Home
last modified time | relevance | path

Searched refs:CefFrameImpl (Results 1 – 9 of 9) sorted by relevance

/third_party/cef/libcef/renderer/
Dframe_impl.cc64 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 …]
Dframe_impl.h40 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);
Drender_frame_observer.h18 class CefFrameImpl; variable
54 void AttachFrame(CefFrameImpl* frame);
60 CefFrameImpl* frame_ = nullptr;
Dbrowser_impl.h80 CefRefPtr<CefFrameImpl> GetWebFrameImpl(blink::WebLocalFrame* frame);
81 CefRefPtr<CefFrameImpl> GetWebFrameImpl(int64_t frame_id);
105 using FrameMap = std::map<int64, CefRefPtr<CefFrameImpl>>;
Drender_frame_observer.cc96 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()
Dbrowser_impl.cc280 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()
Drender_urlrequest_impl.cc147 auto frame_impl = static_cast<CefFrameImpl*>(frame_.get()); in Start()
/third_party/chromium/patch/
D0004-ohos-3.2-Beta5.patch8178 @@ -808,39 +830,38 @@ void CefFrameImpl::PutZoomingForTextFactor(float factor) {
8194 void CefFrameImpl::GetImageForContextNode() {
8230 @@ -963,8 +984,7 @@ void CefFrameImpl::UpdateLocale(const std::string& locale) {
8238 LOG(ERROR) << "CefFrameImpl update locale failed";
8240 @@ -977,13 +997,83 @@ void CefFrameImpl::GetImagesWithResponse(
8254 +void CefFrameImpl::ScrollPageUpDown(bool is_up,
8284 +void CefFrameImpl::ScrollTo(float x, float y) {
8295 +void CefFrameImpl::ScrollBy(float delta_x, float delta_y) {
8308 +void CefFrameImpl::SlideScroll(float vx, float vy) {
8329 @@ -159,7 +159,10 @@ class CefFrameImpl : public CefFrame, public cef::mojom::RenderFrame {
D0003-ohos-1115.patch24610 CefFrameImpl::CefFrameImpl(CefBrowserImpl* browser,
24611 @@ -106,6 +130,10 @@ void CefFrameImpl::ViewSource() {
24615 +void CefFrameImpl::GetImages(CefRefPtr<CefGetImagesCallback> callback) {
24619 void CefFrameImpl::GetSource(CefRefPtr<CefStringVisitor> visitor) {
24622 @@ -684,6 +712,280 @@ void CefFrameImpl::MoveOrResizeStarted() {
24627 +void CefFrameImpl::LoadHeaderUrl(const CefString& url,
24641 +void CefFrameImpl::OnFocusedNodeChanged(const blink::WebElement& element) {
24666 +void CefFrameImpl::SendTouchEvent(cef::mojom::TouchEventParamsPtr params) {
24698 +void CefFrameImpl::RemoveCache() {
24702 +void CefFrameImpl::SetInitialScale(float initialScale) {
[all …]