Home | History | Annotate | Download | only in web_contents

Lines Matching refs:WebContentsImpl

112 // If a WebContentsImpl is told to navigate to a different web site (as
136 // WebContentsImpl. This isn't ideal, but it doesn't affect any functionality.
176 base::LazyInstance<std::vector<WebContentsImpl::CreatedCallback> >
233 return WebContentsImpl::CreateWithOpener(
234 params, static_cast<WebContentsImpl*>(params.opener));
240 WebContentsImpl* new_contents = new WebContentsImpl(
255 void WebContentsImpl::AddCreatedCallback(const CreatedCallback& callback) {
259 void WebContentsImpl::RemoveCreatedCallback(const CreatedCallback& callback) {
279 // WebContentsImpl::DestructionObserver ----------------------------------------
281 class WebContentsImpl::DestructionObserver : public WebContentsObserver {
283 DestructionObserver(WebContentsImpl* owner, WebContents* watched_contents)
291 static_cast<WebContentsImpl*>(web_contents()));
295 WebContentsImpl* owner_;
300 WebContentsImpl::ColorChooserInfo::ColorChooserInfo(int render_process_id,
310 WebContentsImpl::ColorChooserInfo::~ColorChooserInfo() {
313 // WebContentsImpl -------------------------------------------------------------
315 WebContentsImpl::WebContentsImpl(
317 WebContentsImpl* opener)
361 base::Bind(&WebContentsImpl::OnFrameRemoved,
365 WebContentsImpl::~WebContentsImpl() {
435 WebContentsImpl* WebContentsImpl::CreateWithOpener(
437 WebContentsImpl* opener) {
438 TRACE_EVENT0("browser", "WebContentsImpl::CreateWithOpener");
439 WebContentsImpl* new_contents = new WebContentsImpl(
461 RenderFrameHostManager* WebContentsImpl::GetRenderManagerForTesting() {
465 bool WebContentsImpl::OnMessageReceived(RenderViewHost* render_view_host,
470 bool WebContentsImpl::OnMessageReceived(RenderViewHost* render_view_host,
507 IPC_BEGIN_MESSAGE_MAP(WebContentsImpl, message)
571 void WebContentsImpl::RunFileChooser(
578 NavigationControllerImpl& WebContentsImpl::GetController() {
582 const NavigationControllerImpl& WebContentsImpl::GetController() const {
586 BrowserContext* WebContentsImpl::GetBrowserContext() const {
590 const GURL& WebContentsImpl::GetURL() const {
596 const GURL& WebContentsImpl::GetVisibleURL() const {
602 const GURL& WebContentsImpl::GetLastCommittedURL() const {
608 WebContentsDelegate* WebContentsImpl::GetDelegate() {
612 void WebContentsImpl::SetDelegate(WebContentsDelegate* delegate) {
627 RenderProcessHost* WebContentsImpl::GetRenderProcessHost() const {
632 RenderFrameHost* WebContentsImpl::GetMainFrame() {
636 RenderFrameHost* WebContentsImpl::GetFocusedFrame() {
642 void WebContentsImpl::ForEachFrame(
647 void WebContentsImpl::SendToAllFrames(IPC::Message* message) {
652 RenderViewHost* WebContentsImpl::GetRenderViewHost() const {
656 int WebContentsImpl::GetRoutingID() const {
663 int WebContentsImpl::GetFullscreenWidgetRoutingID() const {
667 RenderWidgetHostView* WebContentsImpl::GetRenderWidgetHostView() const {
671 RenderWidgetHostView* WebContentsImpl::GetFullscreenRenderWidgetHostView()
679 WebContentsView* WebContentsImpl::GetView() const {
683 WebUI* WebContentsImpl::CreateWebUI(const GURL& url) {
697 WebUI* WebContentsImpl::GetWebUI() const {
702 WebUI* WebContentsImpl::GetCommittedWebUI() const {
706 void WebContentsImpl::SetUserAgentOverride(const std::string& override) {
727 const std::string& WebContentsImpl::GetUserAgentOverride() const {
732 void WebContentsImpl::SetParentNativeViewAccessible(
740 const base::string16& WebContentsImpl::GetTitle() const {
795 int32 WebContentsImpl::GetMaxPageID() {
799 int32 WebContentsImpl::GetMaxPageIDForSiteInstance(
807 void WebContentsImpl::UpdateMaxPageID(int32 page_id) {
811 void WebContentsImpl::UpdateMaxPageIDForSiteInstance(
817 void WebContentsImpl::CopyMaxPageIDsFrom(WebContents* web_contents) {
818 WebContentsImpl* contents = static_cast<WebContentsImpl*>(web_contents);
822 SiteInstance* WebContentsImpl::GetSiteInstance() const {
826 SiteInstance* WebContentsImpl::GetPendingSiteInstance() const {
833 WebContentsImpl::IsLoading() const {
837 bool WebContentsImpl::IsLoadingToDifferentDocument() const {
841 bool WebContentsImpl::IsWaitingForResponse() const {
845 const net::LoadStateWithParam& WebContentsImpl::GetLoadState() const {
849 const base::string16& WebContentsImpl::GetLoadStateHost() const {
853 uint64 WebContentsImpl::GetUploadSize() const {
857 uint64 WebContentsImpl::GetUploadPosition() const {
861 std::set<GURL> WebContentsImpl::GetSitesInTab() const {
869 const std::string& WebContentsImpl::GetEncoding() const {
873 bool WebContentsImpl::DisplayedInsecureContent() const {
877 void WebContentsImpl::IncrementCapturerCount(const gfx::Size& capture_size) {
881 << " capturing(s) of WebContentsImpl@" << this;
891 void WebContentsImpl::DecrementCapturerCount() {
894 << " capturing(s) of WebContentsImpl@" << this;
912 int WebContentsImpl::GetCapturerCount() const {
916 bool WebContentsImpl::IsCrashed() const {
922 void WebContentsImpl::SetIsCrashed(base::TerminationStatus status,
932 base::TerminationStatus WebContentsImpl::GetCrashedStatus() const {
936 bool WebContentsImpl::IsBeingDestroyed() const {
940 void WebContentsImpl::NotifyNavigationStateChanged(unsigned changed_flags) {
945 base::TimeTicks WebContentsImpl::GetLastActiveTime() const {
949 void WebContentsImpl::WasShown() {
979 void WebContentsImpl::WasHidden() {
985 // This is because closing the tab calls WebContentsImpl::Destroy(), which
1003 bool WebContentsImpl::NeedToFireBeforeUnload() {
1011 void WebContentsImpl::DispatchBeforeUnload(bool for_cross_site_transition) {
1016 void WebContentsImpl::Stop() {
1021 WebContents* WebContentsImpl::Clone() {
1027 WebContentsImpl* tc = CreateWithOpener(create_params, opener_);
1035 void WebContentsImpl::Observe(int type,
1055 WebContents* WebContentsImpl::GetWebContents() {
1059 void WebContentsImpl::Init(const WebContents::CreateParams& params) {
1111 void WebContentsImpl::OnWebContentsDestroyed(WebContentsImpl* web_contents) {
1131 void WebContentsImpl::AddDestructionObserver(WebContentsImpl* web_contents) {
1138 void WebContentsImpl::RemoveDestructionObserver(WebContentsImpl* web_contents) {
1147 void WebContentsImpl::AddObserver(WebContentsObserver* observer) {
1151 void WebContentsImpl::RemoveObserver(WebContentsObserver* observer) {
1156 WebContentsImpl::GetRenderWidgetHostViewsInTree() {
1167 void WebContentsImpl::Activate() {
1172 void WebContentsImpl::Deactivate() {
1177 void WebContentsImpl::LostCapture() {
1182 void WebContentsImpl::RenderWidgetDeleted(
1206 bool WebContentsImpl::PreHandleKeyboardEvent(
1213 void WebContentsImpl::HandleKeyboardEvent(const NativeWebKeyboardEvent& event) {
1218 bool WebContentsImpl::HandleWheelEvent(
1240 bool WebContentsImpl::PreHandleGestureEvent(
1245 bool WebContentsImpl::HandleGestureEvent(
1286 gfx::NativeViewAccessible WebContentsImpl::GetParentNativeViewAccessible() {
1291 void WebContentsImpl::HandleMouseDown() {
1296 void WebContentsImpl::HandleMouseUp() {
1301 void WebContentsImpl::HandlePointerActivate() {
1306 void WebContentsImpl::HandleGestureBegin() {
1311 void WebContentsImpl::HandleGestureEnd() {
1316 void WebContentsImpl::ToggleFullscreenMode(bool enter_fullscreen) {
1332 bool WebContentsImpl::IsFullscreenForCurrentTab() const {
1336 void WebContentsImpl::RequestToLockMouse(bool user_gesture,
1345 void WebContentsImpl::LostMouseLock() {
1350 void WebContentsImpl::CreateNewWindow(
1373 // this WebContentsImpl instance. If any other process sends the request,
1438 WebContentsImpl* new_contents = static_cast<WebContentsImpl*>(
1490 void WebContentsImpl::CreateNewWidget(int render_process_id,
1496 void WebContentsImpl::CreateNewFullscreenWidget(int render_process_id,
1501 void WebContentsImpl::CreateNewWidget(int render_process_id,
1507 // this WebContentsImpl instance. If any other process sends the request,
1543 void WebContentsImpl::ShowCreatedWindow(int route_id,
1547 WebContentsImpl* contents = GetCreatedWindow(route_id);
1557 void WebContentsImpl::ShowCreatedWidget(int route_id,
1562 void WebContentsImpl::ShowCreatedFullscreenWidget(int route_id) {
1566 void WebContentsImpl::ShowCreatedWidget(int route_id,
1615 WebContentsImpl* WebContentsImpl::GetCreatedWindow(int route_id) {
1624 WebContentsImpl* new_contents = iter->second;
1641 RenderWidgetHostView* WebContentsImpl::GetCreatedWidget(int route_id) {
1660 void WebContentsImpl::RequestMediaAccessPermission(
1672 SessionStorageNamespace* WebContentsImpl::GetSessionStorageNamespace(
1677 SessionStorageNamespaceMap WebContentsImpl::GetSessionStorageNamespaceMap() {
1681 FrameTree* WebContentsImpl::GetFrameTree() {
1685 void WebContentsImpl::AccessibilityEventReceived(
1691 void WebContentsImpl::OnShowValidationMessage(
1700 void WebContentsImpl::OnHideValidationMessage() {
1705 void WebContentsImpl::OnMoveValidationMessage(
1711 void WebContentsImpl::DidSendScreenRects(RenderWidgetHostImpl* rwh) {
1716 void WebContentsImpl::OnTouchEmulationEnabled(bool enabled) {
1722 void WebContentsImpl::UpdatePreferredSize(const gfx::Size& pref_size) {
1728 void WebContentsImpl::ResizeDueToAutoResize(const gfx::Size& new_size) {
1733 WebContents* WebContentsImpl::OpenURL(const OpenURLParams& params) {
1741 bool WebContentsImpl::Send(IPC::Message* message) {
1750 bool WebContentsImpl::NavigateToPendingEntry(
1767 void WebContentsImpl::RenderFrameForInterstitialPageCreated(
1773 void WebContentsImpl::AttachInterstitialPage(
1787 void WebContentsImpl::DetachInterstitialPage() {
1794 void WebContentsImpl::SetHistoryLengthAndPrune(
1818 void WebContentsImpl::ReloadFocusedFrame(bool ignore_cache) {
1827 void WebContentsImpl::Undo() {
1836 void WebContentsImpl::Redo() {
1844 void WebContentsImpl::Cut() {
1853 void WebContentsImpl::Copy() {
1862 void WebContentsImpl::CopyToFindPboard() {
1875 void WebContentsImpl::Paste() {
1884 void WebContentsImpl::PasteAndMatchStyle() {
1894 void WebContentsImpl::Delete() {
1903 void WebContentsImpl::SelectAll() {
1912 void WebContentsImpl::Unselect() {
1921 void WebContentsImpl::Replace(const base::string16& word) {
1930 void WebContentsImpl::ReplaceMisspelling(const base::string16& word) {
1939 void WebContentsImpl::NotifyContextMenuClosed(
1949 void WebContentsImpl::ExecuteCustomContextMenuCommand(
1959 gfx::NativeView WebContentsImpl::GetNativeView() {
1963 gfx::NativeView WebContentsImpl::GetContentNativeView() {
1967 gfx::NativeWindow WebContentsImpl::GetTopLevelNativeWindow() {
1971 gfx::Rect WebContentsImpl::GetViewBounds() {
1975 gfx::Rect WebContentsImpl::GetContainerBounds() {
1981 DropData* WebContentsImpl::GetDropData() {
1985 void WebContentsImpl::Focus() {
1989 void WebContentsImpl::SetInitialFocus() {
1993 void WebContentsImpl::StoreFocus() {
1997 void WebContentsImpl::RestoreFocus() {
2001 void WebContentsImpl::FocusThroughTabTraversal(bool reverse) {
2009 bool WebContentsImpl::ShowingInterstitialPage() const {
2013 InterstitialPage* WebContentsImpl::GetInterstitialPage() const {
2017 bool WebContentsImpl::IsSavable() {
2028 void WebContentsImpl::OnSavePage() {
2048 bool WebContentsImpl::SavePage(const base::FilePath& main_file,
2058 void WebContentsImpl::SaveFrame(const GURL& url,
2085 void WebContentsImpl::GenerateMHTML(
2091 const std::string& WebContentsImpl::GetContentsMimeType() const {
2095 bool WebContentsImpl::WillNotifyDisconnection() const {
2099 void WebContentsImpl::SetOverrideEncoding(const std::string& encoding) {
2104 void WebContentsImpl::ResetOverrideEncoding() {
2109 RendererPreferences* WebContentsImpl::GetMutableRendererPrefs() {
2113 void WebContentsImpl::Close() {
2117 void WebContentsImpl::DragSourceEndedAt(int client_x, int client_y,
2127 void WebContentsImpl::DidGetResourceResponseStart(
2141 void WebContentsImpl::DidGetRedirectForResourceRequest(
2158 void WebContentsImpl::SystemDragEnded() {
2167 void WebContentsImpl::UserGestureDone() {
2171 void WebContentsImpl::SetClosedByUserGesture(bool value) {
2175 bool WebContentsImpl::GetClosedByUserGesture() const {
2179 int WebContentsImpl::GetZoomPercent(bool* enable_increment,
2191 void WebContentsImpl::ViewSource() {
2202 void WebContentsImpl::ViewFrameSource(const GURL& url,
2210 int WebContentsImpl::GetMinimumZoomPercent() const {
2214 int WebContentsImpl::GetMaximumZoomPercent() const {
2218 gfx::Size WebContentsImpl::GetPreferredSize() const {
2222 bool WebContentsImpl::GotResponseToLockMouseRequest(bool allowed) {
2230 bool WebContentsImpl::HasOpener() const {
2234 void WebContentsImpl::DidChooseColorInColorChooser(SkColor color) {
2247 void WebContentsImpl::DidEndColorChooser() {
2261 int WebContentsImpl::DownloadImage(const GURL& url,
2270 bool WebContentsImpl::IsSubframe() const {
2274 void WebContentsImpl::Find(int request_id,
2280 void WebContentsImpl::StopFinding(StopFindAction action) {
2284 void WebContentsImpl::InsertCSS(const std::string& css) {
2289 bool WebContentsImpl::FocusLocationBarByDefault() {
2296 void WebContentsImpl::SetFocusToLocationBar(bool select_all) {
2301 void WebContentsImpl::DidStartProvisionalLoad(
2327 void WebContentsImpl::DidFailProvisionalLoadWithError(
2346 void WebContentsImpl::DidFailLoadWithError(
2359 void WebContentsImpl::NotifyChangedNavigationState(
2364 void WebContentsImpl::AboutToNavigateRenderFrame(
2374 void WebContentsImpl::DidStartNavigationToPendingEntry(
2385 void WebContentsImpl::RequestOpenURL(RenderFrameHostImpl* render_frame_host,
2402 bool WebContentsImpl::ShouldPreserveAbortedURLs() {
2408 void WebContentsImpl::DidRedirectProvisionalLoad(
2419 void WebContentsImpl::DidCommitProvisionalLoad(
2439 void WebContentsImpl::DidNavigateMainFramePreCommit(
2455 void WebContentsImpl::DidNavigateMainFramePostCommit(
2485 void WebContentsImpl::DidNavigateAnyFramePostCommit(
2502 void WebContentsImpl::SetMainFrameMimeType(const std::string& mime_type) {
2506 bool WebContentsImpl::CanOverscrollContent() const {
2517 void WebContentsImpl::OnThemeColorChanged(SkColor theme_color) {
2522 void WebContentsImpl::OnDidLoadResourceFromMemoryCache(
2564 void WebContentsImpl::OnDidDisplayInsecureContent() {
2571 void WebContentsImpl::OnDidRunInsecureContent(
2584 void WebContentsImpl::OnDocumentLoadedInFrame() {
2597 void WebContentsImpl::OnDidFinishLoad(
2620 void WebContentsImpl::OnDidStartLoading(bool to_different_document) {
2648 void WebContentsImpl::OnDidStopLoading() {
2672 void WebContentsImpl::OnDidChangeLoadProgress(double load_progress) {
2700 base::Bind(&WebContentsImpl::SendLoadProgressChanged,
2705 void WebContentsImpl::OnGoToEntryAtOffset(int offset) {
2710 void WebContentsImpl::OnUpdateZoomLimits(int minimum_percent,
2716 void WebContentsImpl::OnEnumerateDirectory(int request_id,
2727 void WebContentsImpl::OnRegisterProtocolHandler(const std::string& protocol,
2742 void WebContentsImpl::OnFindReply(int request_id,
2754 void WebContentsImpl::OnFindMatchRectsReply(
2762 void WebContentsImpl::OnOpenDateTimeDialog(
2776 void WebContentsImpl::OnPepperPluginHung(int plugin_child_id,
2785 void WebContentsImpl::OnPluginCrashed(const base::FilePath& plugin_path,
2791 void WebContentsImpl::OnDomOperationResponse(const std::string& json_string,
2800 void WebContentsImpl::OnAppCacheAccessed(const GURL& manifest_url,
2807 void WebContentsImpl::OnOpenColorChooser(
2826 void WebContentsImpl::OnEndColorChooser(int color_chooser_id) {
2832 void WebContentsImpl::OnSetSelectedColorInColorChooser(int color_chooser_id,
2841 void WebContentsImpl::OnWebUISend(const GURL& source_url,
2848 void WebContentsImpl::OnRequestPpapiBrokerPermission(
2859 base::Bind(&WebContentsImpl::OnPpapiBrokerPermissionResult,
2866 void WebContentsImpl::OnPpapiBrokerPermissionResult(int routing_id,
2871 void WebContentsImpl::OnBrowserPluginMessage(const IPC::Message& message) {
2882 void WebContentsImpl::OnDidDownloadImage(
2904 void WebContentsImpl::OnUpdateFaviconURL(
2910 void WebContentsImpl::OnMediaPlayingNotification(int64 player_cookie,
2935 void WebContentsImpl::OnMediaPausedNotification(int64 player_cookie) {
2943 void WebContentsImpl::OnFirstVisuallyNonEmptyPaint() {
2948 void WebContentsImpl::DidChangeVisibleSSLState() {
2953 void WebContentsImpl::NotifyBeforeFormRepostWarningShow() {
2959 void WebContentsImpl::ActivateAndShowRepostFormWarningDialog() {
2965 bool WebContentsImpl::HasAccessedInitialDocument() {
2971 void WebContentsImpl::SetIsLoading(RenderViewHost* render_view_host,
2998 TRACE_EVENT_ASYNC_BEGIN1("browser", "WebContentsImpl Loading", this,
3003 TRACE_EVENT_ASYNC_END1("browser", "WebContentsImpl Loading", this,
3018 void WebContentsImpl::SelectRange(const gfx::Point& start,
3028 void WebContentsImpl::UpdateMaxPageIDIfNecessary(RenderViewHost* rvh) {
3042 bool WebContentsImpl::UpdateTitleForEntry(NavigationEntryImpl* entry,
3089 void WebContentsImpl::SendLoadProgressChanged() {
3113 void WebContentsImpl::ResetLoadProgressState() {
3120 void WebContentsImpl::NotifySwapped(RenderViewHost* old_host,
3145 void WebContentsImpl::NotifyDisconnected() {
3156 void WebContentsImpl::NotifyNavigationEntryCommitted(
3162 bool WebContentsImpl::OnMessageReceived(RenderFrameHost* render_frame_host,
3167 const GURL& WebContentsImpl::GetMainFrameLastCommittedURL() const {
3171 void WebContentsImpl::RenderFrameCreated(RenderFrameHost* render_frame_host) {
3179 void WebContentsImpl::RenderFrameDeleted(RenderFrameHost* render_frame_host) {
3186 void WebContentsImpl::WorkerCrashed(RenderFrameHost* render_frame_host) {
3191 void WebContentsImpl::ShowContextMenu(RenderFrameHost* render_frame_host,
3207 void WebContentsImpl::RunJavaScriptMessage(
3236 base::Bind(&WebContentsImpl::OnDialogClosed,
3257 void WebContentsImpl::RunBeforeUnloadConfirm(
3283 base::Bind(&WebContentsImpl::OnDialogClosed, base::Unretained(this),
3289 WebContents* WebContentsImpl::GetAsWebContents() {
3293 bool WebContentsImpl::IsNeverVisible() {
3299 RenderViewHostDelegateView* WebContentsImpl::GetDelegateView() {
3303 RendererPreferences WebContentsImpl::GetRendererPrefs(
3308 gfx::Rect WebContentsImpl::GetRootWindowResizerRect() const {
3314 void WebContentsImpl::RemoveBrowserPluginEmbedder() {
3319 void WebContentsImpl::RenderViewCreated(RenderViewHost* render_view_host) {
3359 void WebContentsImpl::RenderViewReady(RenderViewHost* rvh) {
3386 void WebContentsImpl::RenderViewTerminated(RenderViewHost* rvh,
3422 void WebContentsImpl::RenderViewDeleted(RenderViewHost* rvh) {
3426 void WebContentsImpl::UpdateState(RenderViewHost* rvh,
3457 void WebContentsImpl::UpdateTargetURL(int32 page_id, const GURL& url) {
3462 void WebContentsImpl::Close(RenderViewHost* rvh) {
3482 void WebContentsImpl::SwappedOut(RenderFrameHost* rfh) {
3487 void WebContentsImpl::RequestMove(const gfx::Rect& new_bounds) {
3492 void WebContentsImpl::DidStartLoading(RenderFrameHost* render_frame_host,
3498 void WebContentsImpl::DidStopLoading(RenderFrameHost* render_frame_host) {
3524 void WebContentsImpl::DidCancelLoading() {
3531 void WebContentsImpl::DidAccessInitialDocument() {
3544 void WebContentsImpl::DidDisownOpener(RenderFrameHost* render_frame_host) {
3558 void WebContentsImpl::DocumentOnLoadCompleted(
3570 void WebContentsImpl::UpdateTitle(RenderFrameHost* render_frame_host,
3601 void WebContentsImpl::UpdateEncoding(RenderFrameHost* render_frame_host,
3606 void WebContentsImpl::DocumentAvailableInMainFrame(
3611 void WebContentsImpl::RouteCloseEvent(RenderViewHost* rvh) {
3621 void WebContentsImpl::RouteMessageEvent(
3652 WebContentsImpl* source_contents = NULL;
3656 source_contents = static_cast<WebContentsImpl*>(
3683 bool WebContentsImpl::AddMessageToConsole(int32 level,
3693 WebPreferences WebContentsImpl::GetWebkitPrefs() {
3704 int WebContentsImpl::CreateSwappedOutRenderView(
3710 void WebContentsImpl::OnUserGesture() {
3719 void WebContentsImpl::OnIgnoredUIEvent() {
3724 void WebContentsImpl::RendererUnresponsive(RenderViewHost* rvh,
3769 void WebContentsImpl::RendererResponsive(RenderViewHost* render_view_host) {
3774 void WebContentsImpl::LoadStateChanged(
3792 void WebContentsImpl::BeforeUnloadFiredFromRenderManager(
3802 void WebContentsImpl::RenderProcessGoneFromRenderManager(
3808 void WebContentsImpl::UpdateRenderViewSizeForRenderManager() {
3819 void WebContentsImpl::CancelModalDialogsForRenderManager() {
3826 void WebContentsImpl::NotifySwappedFromRenderManager(RenderViewHost* old_host,
3837 int WebContentsImpl::CreateOpenerRenderViewsForRenderManager(
3846 int WebContentsImpl::CreateOpenerRenderViews(SiteInstance* instance) {
3875 NavigationControllerImpl& WebContentsImpl::GetControllerForRenderManager() {
3879 WebUIImpl* WebContentsImpl::CreateWebUIForRenderManager(const GURL& url) {
3884 WebContentsImpl::GetLastCommittedNavigationEntryForRenderManager() {
3888 bool WebContentsImpl::CreateRenderViewForRenderManager(
3893 TRACE_EVENT0("browser", "WebContentsImpl::CreateRenderViewForRenderManager");
3941 WebContentsImpl::GetJavaWebContents() {
3953 bool WebContentsImpl::CreateRenderViewForInitialEmptyDocument() {
3962 void WebContentsImpl::SetAllowOverlappingViews(bool overlapping) {
3966 bool WebContentsImpl::GetAllowOverlappingViews() {
3970 void WebContentsImpl::SetOverlayView(WebContents* overlay,
3972 view_->SetOverlayView(static_cast<WebContentsImpl*>(overlay)->GetView(),
3976 void WebContentsImpl::RemoveOverlayView() {
3982 void WebContentsImpl::OnDialogClosed(int render_process_id,
4013 void WebContentsImpl::SetEncoding(const std::string& encoding) {
4022 void WebContentsImpl::CreateViewAndSetSizeForRVH(RenderViewHost* rvh) {
4029 bool WebContentsImpl::IsHidden() {
4033 RenderFrameHostManager* WebContentsImpl::GetRenderManager() const {
4037 RenderViewHostImpl* WebContentsImpl::GetRenderViewHostImpl() {
4041 BrowserPluginGuest* WebContentsImpl::GetBrowserPluginGuest() const {
4045 void WebContentsImpl::SetBrowserPluginGuest(BrowserPluginGuest* guest) {
4050 BrowserPluginEmbedder* WebContentsImpl::GetBrowserPluginEmbedder() const {
4054 void WebContentsImpl
4060 void WebContentsImpl::ClearAllPowerSaveBlockers() {
4067 gfx::Size WebContentsImpl::GetSizeForNewRenderView() {
4076 void WebContentsImpl::OnFrameRemoved(
4083 void WebContentsImpl::OnPreferredSizeChanged(const gfx::Size& old_size) {