• Home
  • Raw
  • Download

Lines Matching full:browser

5 #include "tests/cefclient/browser/client_handler_osr.h"
31 void ClientHandlerOsr::OnAfterCreated(CefRefPtr<CefBrowser> browser) { in OnAfterCreated() argument
34 osr_delegate_->OnAfterCreated(browser); in OnAfterCreated()
35 ClientHandler::OnAfterCreated(browser); in OnAfterCreated()
38 void ClientHandlerOsr::OnBeforeClose(CefRefPtr<CefBrowser> browser) { in OnBeforeClose() argument
41 osr_delegate_->OnBeforeClose(browser); in OnBeforeClose()
42 ClientHandler::OnBeforeClose(browser); in OnBeforeClose()
45 bool ClientHandlerOsr::GetRootScreenRect(CefRefPtr<CefBrowser> browser, in GetRootScreenRect() argument
50 return osr_delegate_->GetRootScreenRect(browser, rect); in GetRootScreenRect()
53 void ClientHandlerOsr::GetViewRect(CefRefPtr<CefBrowser> browser, in GetViewRect() argument
61 osr_delegate_->GetViewRect(browser, rect); in GetViewRect()
64 bool ClientHandlerOsr::GetScreenPoint(CefRefPtr<CefBrowser> browser, in GetScreenPoint() argument
72 return osr_delegate_->GetScreenPoint(browser, viewX, viewY, screenX, screenY); in GetScreenPoint()
75 bool ClientHandlerOsr::GetScreenInfo(CefRefPtr<CefBrowser> browser, in GetScreenInfo() argument
80 return osr_delegate_->GetScreenInfo(browser, screen_info); in GetScreenInfo()
83 void ClientHandlerOsr::OnPopupShow(CefRefPtr<CefBrowser> browser, bool show) { in OnPopupShow() argument
87 return osr_delegate_->OnPopupShow(browser, show); in OnPopupShow()
90 void ClientHandlerOsr::OnPopupSize(CefRefPtr<CefBrowser> browser, in OnPopupSize() argument
95 return osr_delegate_->OnPopupSize(browser, rect); in OnPopupSize()
98 void ClientHandlerOsr::OnPaint(CefRefPtr<CefBrowser> browser, in OnPaint() argument
107 osr_delegate_->OnPaint(browser, type, dirtyRects, buffer, width, height); in OnPaint()
111 CefRefPtr<CefBrowser> browser, in OnAcceleratedPaint() argument
118 osr_delegate_->OnAcceleratedPaint(browser, type, dirtyRects, share_handle); in OnAcceleratedPaint()
122 CefRefPtr<CefBrowser> browser, in StartDragging() argument
130 return osr_delegate_->StartDragging(browser, drag_data, allowed_ops, x, y); in StartDragging()
134 CefRefPtr<CefBrowser> browser, in UpdateDragCursor() argument
139 osr_delegate_->UpdateDragCursor(browser, operation); in UpdateDragCursor()
143 CefRefPtr<CefBrowser> browser, in OnImeCompositionRangeChanged() argument
149 osr_delegate_->OnImeCompositionRangeChanged(browser, selection_range, in OnImeCompositionRangeChanged()
160 bool ClientHandlerOsr::OnCursorChange(CefRefPtr<CefBrowser> browser, in OnCursorChange() argument
165 if (ClientHandler::OnCursorChange(browser, cursor, type, in OnCursorChange()
170 osr_delegate_->OnCursorChange(browser, cursor, type, custom_cursor_info); in OnCursorChange()