Lines Matching refs:CefBrowserImpl
23913 @@ -72,7 +72,6 @@ void CefBrowserImpl::GoBack() {
23915 bool CefBrowserImpl::CanGoForward() {
23921 @@ -82,6 +81,22 @@ void CefBrowserImpl::GoForward() {
23925 +bool CefBrowserImpl::CanGoBackOrForward(int num_steps) {
23931 +void CefBrowserImpl::GoBackOrForward(int num_steps) {
23937 +void CefBrowserImpl::DeleteHistory() {
23941 bool CefBrowserImpl::IsLoading() {
23944 @@ -263,6 +278,15 @@ void CefBrowserImpl::GetFrameNames(std::vector<CefString>& names) {
23949 +CefBrowserImpl::GetPermissionRequestDelegate() {
23953 +CefRefPtr<CefGeolocationAcess> CefBrowserImpl::GetGeolocationPermissions() {
23957 // CefBrowserImpl public methods.
23960 @@ -401,3 +425,24 @@ void CefBrowserImpl::OnLoadingStateChange(bool isLoading) {
23966 +void CefBrowserImpl::ReloadOriginalUrl() {
23980 +bool CefBrowserImpl::ShouldShowLoadingUI() {
24001 @@ -50,9 +50,16 @@ class CefBrowserImpl : public CefBrowser, public blink::WebViewObserver {
24018 @@ -65,6 +72,9 @@ class CefBrowserImpl : public CefBrowser, public blink::WebViewObserver {
24026 CefBrowserImpl(content::RenderView* render_view,
24028 @@ -93,6 +103,10 @@ class CefBrowserImpl : public CefBrowser, public blink::WebViewObserver {
24083 CefFrameImpl::CefFrameImpl(CefBrowserImpl* browser,
24396 CefBrowserImpl* browser_;
25246 CefRefPtr<CefBrowserImpl> browserPtr =
25247 CefBrowserImpl::GetBrowserForMainFrame(frame->Top());