• Home
  • Raw
  • Download

Lines Matching full:browser

5 #include "tests/cefclient/browser/client_handler_osr.h"
32 void ClientHandlerOsr::OnAfterCreated(CefRefPtr<CefBrowser> browser) { in OnAfterCreated() argument
35 osr_delegate_->OnAfterCreated(browser); in OnAfterCreated()
36 ClientHandler::OnAfterCreated(browser); in OnAfterCreated()
39 void ClientHandlerOsr::OnBeforeClose(CefRefPtr<CefBrowser> browser) { in OnBeforeClose() argument
42 osr_delegate_->OnBeforeClose(browser); in OnBeforeClose()
43 ClientHandler::OnBeforeClose(browser); in OnBeforeClose()
46 bool ClientHandlerOsr::GetRootScreenRect(CefRefPtr<CefBrowser> browser, in GetRootScreenRect() argument
51 return osr_delegate_->GetRootScreenRect(browser, rect); in GetRootScreenRect()
54 void ClientHandlerOsr::GetViewRect(CefRefPtr<CefBrowser> browser, in GetViewRect() argument
62 osr_delegate_->GetViewRect(browser, rect); in GetViewRect()
65 bool ClientHandlerOsr::GetScreenPoint(CefRefPtr<CefBrowser> browser, in GetScreenPoint() argument
73 return osr_delegate_->GetScreenPoint(browser, viewX, viewY, screenX, screenY); in GetScreenPoint()
76 bool ClientHandlerOsr::GetScreenInfo(CefRefPtr<CefBrowser> browser, in GetScreenInfo() argument
81 return osr_delegate_->GetScreenInfo(browser, screen_info); in GetScreenInfo()
84 void ClientHandlerOsr::OnPopupShow(CefRefPtr<CefBrowser> browser, bool show) { in OnPopupShow() argument
88 return osr_delegate_->OnPopupShow(browser, show); in OnPopupShow()
91 void ClientHandlerOsr::OnPopupSize(CefRefPtr<CefBrowser> browser, in OnPopupSize() argument
96 return osr_delegate_->OnPopupSize(browser, rect); in OnPopupSize()
99 void ClientHandlerOsr::OnPaint(CefRefPtr<CefBrowser> browser, in OnPaint() argument
108 osr_delegate_->OnPaint(browser, type, dirtyRects, buffer, width, height); in OnPaint()
112 CefRefPtr<CefBrowser> browser, in OnAcceleratedPaint() argument
119 osr_delegate_->OnAcceleratedPaint(browser, type, dirtyRects, share_handle); in OnAcceleratedPaint()
123 CefRefPtr<CefBrowser> browser, in StartDragging() argument
131 return osr_delegate_->StartDragging(browser, drag_data, allowed_ops, x, y); in StartDragging()
135 CefRefPtr<CefBrowser> browser, in UpdateDragCursor() argument
140 osr_delegate_->UpdateDragCursor(browser, operation); in UpdateDragCursor()
144 CefRefPtr<CefBrowser> browser, in OnImeCompositionRangeChanged() argument
150 osr_delegate_->OnImeCompositionRangeChanged(browser, selection_range, in OnImeCompositionRangeChanged()
161 bool ClientHandlerOsr::OnCursorChange(CefRefPtr<CefBrowser> browser, in OnCursorChange() argument
166 if (ClientHandler::OnCursorChange(browser, cursor, type, in OnCursorChange()
171 osr_delegate_->OnCursorChange(browser, cursor, type, custom_cursor_info); in OnCursorChange()