blob: 87989c35bf3471a2e435e61050d05c97536df27a [file] [log] [blame]
[email protected]91854cd2012-01-10 19:43:571// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]0dd3a0ab2011-02-18 08:17:442// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]93ddb3c2012-04-11 21:44:295#ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6#define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
[email protected]0dd3a0ab2011-02-18 08:17:447
[email protected]0dd3a0ab2011-02-18 08:17:448#include <map>
[email protected]b24b68a2012-09-24 21:57:269#include <set>
[email protected]0dd3a0ab2011-02-18 08:17:4410#include <string>
[email protected]0dd3a0ab2011-02-18 08:17:4411
[email protected]01d65172011-12-25 04:39:3012#include "base/compiler_specific.h"
[email protected]0dd3a0ab2011-02-18 08:17:4413#include "base/gtest_prod_util.h"
[email protected]3b63f8f42011-03-28 01:54:1514#include "base/memory/scoped_ptr.h"
[email protected]6eac57a2011-07-12 21:15:0915#include "base/observer_list.h"
[email protected]07161902011-11-11 09:57:4216#include "content/browser/renderer_host/java/java_bridge_dispatcher_host_manager.h"
[email protected]2e3bf992012-05-24 17:36:2417#include "content/browser/renderer_host/render_view_host_delegate.h"
[email protected]4ca76c02012-05-16 16:19:0518#include "content/browser/renderer_host/render_widget_host_delegate.h"
[email protected]f9e4dae2012-04-10 21:26:3719#include "content/browser/web_contents/navigation_controller_impl.h"
[email protected]0c4e92e62012-04-11 15:19:0020#include "content/browser/web_contents/render_view_host_manager.h"
[email protected]8d128d62011-09-13 22:11:5721#include "content/common/content_export.h"
[email protected]14392a52012-05-02 20:28:4422#include "content/public/browser/notification_observer.h"
23#include "content/public/browser/notification_registrar.h"
[email protected]58f5d562011-12-20 17:13:0324#include "content/public/browser/web_contents.h"
[email protected]daf82f82011-10-31 22:35:3125#include "content/public/common/renderer_preferences.h"
[email protected]0dd3a0ab2011-02-18 08:17:4426#include "net/base/load_states.h"
[email protected]59363fc92012-09-05 03:46:3127#include "ui/gfx/rect_f.h"
[email protected]bcd2815602012-01-14 18:17:2328#include "ui/gfx/size.h"
[email protected]70435962011-08-02 20:13:2829#include "webkit/glue/resource_type.h"
[email protected]0dd3a0ab2011-02-18 08:17:4430
31#if defined(OS_WIN)
32#include "base/win/scoped_handle.h"
33#endif
34
[email protected]92a01cc2012-09-29 14:13:5935struct BrowserPluginHostMsg_ResizeGuest_Params;
[email protected]f546640b2012-05-15 00:03:4936struct ViewMsg_PostMessage_Params;
[email protected]daf82f82011-10-31 22:35:3137
[email protected]8ff00d72012-10-23 19:12:2138namespace webkit_glue {
39struct WebIntentData;
40struct WebIntentServiceData;
41}
42
[email protected]e582fdd2011-12-20 16:48:1743namespace content {
[email protected]7a846df2012-09-20 19:17:3944class BrowserPluginEmbedder;
45class BrowserPluginGuest;
[email protected]da8543762012-03-20 08:52:2046class ColorChooser;
[email protected]e582fdd2011-12-20 16:48:1747class DownloadItem;
[email protected]8ff00d72012-10-23 19:12:2148class InterstitialPageImpl;
[email protected]51da7e32012-01-30 19:24:5249class JavaScriptDialogCreator;
[email protected]eaabba22012-03-07 15:02:1150class RenderViewHost;
[email protected]5a3bdf52012-05-24 15:12:5751class RenderViewHostDelegateView;
[email protected]eaabba22012-03-07 15:02:1152class RenderViewHostImpl;
[email protected]b24b68a2012-09-24 21:57:2653class RenderWidgetHostImpl;
[email protected]35869622012-10-26 23:23:5554class SavePackage;
[email protected]c2ab4202012-10-24 22:54:4655class SessionStorageNamespaceImpl;
[email protected]09d31d52012-03-11 22:30:2756class SiteInstance;
[email protected]80e776ae2012-03-23 16:17:2057class TestWebContents;
[email protected]674bc592011-12-20 23:00:4258class WebContentsDelegate;
[email protected]8ff00d72012-10-23 19:12:2159class WebContentsImpl;
[email protected]51da7e32012-01-30 19:24:5260class WebContentsObserver;
[email protected]8643e6d2012-01-18 20:26:1061class WebContentsView;
[email protected]f66df822012-05-18 16:52:1762class WebContentsViewDelegate;
[email protected]09d31d52012-03-11 22:30:2763struct LoadNotificationDetails;
[email protected]f66df822012-05-18 16:52:1764
65// Factory function for the implementations that content knows about. Takes
66// ownership of |delegate|.
[email protected]5a3bdf52012-05-24 15:12:5767WebContentsView* CreateWebContentsView(
68 WebContentsImpl* web_contents,
69 WebContentsViewDelegate* delegate,
70 RenderViewHostDelegateView** render_view_host_delegate_view);
[email protected]97714c82012-06-06 10:15:1371
[email protected]b172aee2012-04-10 17:05:2672class CONTENT_EXPORT WebContentsImpl
[email protected]8ff00d72012-10-23 19:12:2173 : public NON_EXPORTED_BASE(WebContents),
74 public RenderViewHostDelegate,
75 public RenderWidgetHostDelegate,
[email protected]14392a52012-05-02 20:28:4476 public RenderViewHostManager::Delegate,
[email protected]8ff00d72012-10-23 19:12:2177 public NotificationObserver {
[email protected]0dd3a0ab2011-02-18 08:17:4478 public:
[email protected]b172aee2012-04-10 17:05:2679 virtual ~WebContentsImpl();
[email protected]0dd3a0ab2011-02-18 08:17:4480
[email protected]d1198fd2012-08-13 22:50:1981 static WebContentsImpl* Create(
[email protected]8ff00d72012-10-23 19:12:2182 BrowserContext* browser_context,
83 SiteInstance* site_instance,
[email protected]d1198fd2012-08-13 22:50:1984 int routing_id,
85 const WebContentsImpl* base_web_contents);
86
87 static WebContentsImpl* CreateWithOpener(
[email protected]8ff00d72012-10-23 19:12:2188 BrowserContext* browser_context,
89 SiteInstance* site_instance,
[email protected]d1198fd2012-08-13 22:50:1990 int routing_id,
91 const WebContentsImpl* base_web_contents,
92 WebContentsImpl* opener);
93
[email protected]7a846df2012-09-20 19:17:3994 // Creates a WebContents to be used as a browser plugin guest.
[email protected]8ff00d72012-10-23 19:12:2195 static WebContentsImpl* CreateGuest(BrowserContext* browser_context,
[email protected]7a846df2012-09-20 19:17:3996 const std::string& host,
97 int guest_instance_id);
98
[email protected]64d69de42012-02-06 00:19:5499 // Returns the content specific prefs for the given RVH.
[email protected]6717bf272012-05-11 23:31:25100 static webkit_glue::WebPreferences GetWebkitPrefs(
[email protected]8ff00d72012-10-23 19:12:21101 RenderViewHost* rvh, const GURL& url);
[email protected]64d69de42012-02-06 00:19:54102
[email protected]0eba810b2012-10-18 03:19:36103 // Creates a swapped out RenderView. This is used by the browser plugin to
104 // create a swapped out RenderView in the embedder render process for the
105 // guest, to expose the guest's window object to the embedder.
106 // This returns the routing ID of the newly created swapped out RenderView.
[email protected]8ff00d72012-10-23 19:12:21107 int CreateSwappedOutRenderView(SiteInstance* instance);
[email protected]0eba810b2012-10-18 03:19:36108
[email protected]d1198fd2012-08-13 22:50:19109 // Complex initialization here. Specifically needed to avoid having
110 // members call back into our virtual functions in the constructor.
[email protected]8ff00d72012-10-23 19:12:21111 virtual void Init(BrowserContext* browser_context,
112 SiteInstance* site_instance,
[email protected]d1198fd2012-08-13 22:50:19113 int routing_id,
[email protected]8ff00d72012-10-23 19:12:21114 const WebContents* base_web_contents);
[email protected]d1198fd2012-08-13 22:50:19115
[email protected]c7dd2f62011-07-18 15:57:59116 // Returns the SavePackage which manages the page saving job. May be NULL.
117 SavePackage* save_package() const { return save_package_.get(); }
118
[email protected]b172aee2012-04-10 17:05:26119 // Updates the max page ID for the current SiteInstance in this
120 // WebContentsImpl to be at least |page_id|.
[email protected]0dd3a0ab2011-02-18 08:17:44121 void UpdateMaxPageID(int32 page_id);
122
[email protected]b172aee2012-04-10 17:05:26123 // Updates the max page ID for the given SiteInstance in this WebContentsImpl
[email protected]74ce1ad2011-12-16 21:51:46124 // to be at least |page_id|.
[email protected]8ff00d72012-10-23 19:12:21125 void UpdateMaxPageIDForSiteInstance(SiteInstance* site_instance,
[email protected]74ce1ad2011-12-16 21:51:46126 int32 page_id);
127
[email protected]91854cd2012-01-10 19:43:57128 // Copy the current map of SiteInstance ID to max page ID from another tab.
129 // This is necessary when this tab adopts the NavigationEntries from
[email protected]b172aee2012-04-10 17:05:26130 // |web_contents|.
131 void CopyMaxPageIDsFrom(WebContentsImpl* web_contents);
[email protected]91854cd2012-01-10 19:43:57132
[email protected]b172aee2012-04-10 17:05:26133 // Called by the NavigationController to cause the WebContentsImpl to navigate
134 // to the current pending entry. The NavigationController should be called
135 // back with RendererDidNavigate on success or DiscardPendingEntry on failure.
[email protected]9a7e68c2011-05-26 17:35:50136 // The callbacks can be inside of this function, or at some future time.
[email protected]0dd3a0ab2011-02-18 08:17:44137 //
138 // The entry has a PageID of -1 if newly created (corresponding to navigation
139 // to a new URL).
140 //
141 // If this method returns false, then the navigation is discarded (equivalent
142 // to calling DiscardPendingEntry on the NavigationController).
[email protected]8ff00d72012-10-23 19:12:21143 bool NavigateToPendingEntry(NavigationController::ReloadType reload_type);
[email protected]0dd3a0ab2011-02-18 08:17:44144
[email protected]ba45bfd2012-05-22 21:51:44145 // Called by InterstitialPageImpl when it creates a RenderViewHost.
[email protected]8ff00d72012-10-23 19:12:21146 void RenderViewForInterstitialPageCreated(RenderViewHost* render_view_host);
[email protected]ba45bfd2012-05-22 21:51:44147
[email protected]0dd3a0ab2011-02-18 08:17:44148 // Sets the passed passed interstitial as the currently showing interstitial.
149 // |interstitial_page| should be non NULL (use the remove_interstitial_page
150 // method to unset the interstitial) and no interstitial page should be set
151 // when there is already a non NULL interstitial page set.
[email protected]cadaec52012-02-08 21:53:13152 void set_interstitial_page(InterstitialPageImpl* interstitial_page) {
[email protected]0dd3a0ab2011-02-18 08:17:44153 render_manager_.set_interstitial_page(interstitial_page);
154 }
155
156 // Unsets the currently showing interstitial.
157 void remove_interstitial_page() {
158 render_manager_.remove_interstitial_page();
159 }
160
[email protected]8ff00d72012-10-23 19:12:21161 void set_opener_web_ui_type(WebUI::TypeID opener_web_ui_type) {
[email protected]0dd3a0ab2011-02-18 08:17:44162 opener_web_ui_type_ = opener_web_ui_type;
163 }
164
[email protected]276b37a22011-11-08 20:45:46165 JavaBridgeDispatcherHostManager* java_bridge_dispatcher_host_manager() const {
166 return java_bridge_dispatcher_host_manager_.get();
167 }
168
[email protected]765187182012-01-11 23:59:28169 // Expose the render manager for testing.
170 RenderViewHostManager* GetRenderManagerForTesting();
171
[email protected]7a846df2012-09-20 19:17:39172 // Returns guest browser plugin object, or NULL if this WebContents is not a
173 // guest.
[email protected]8ff00d72012-10-23 19:12:21174 BrowserPluginGuest* GetBrowserPluginGuest();
[email protected]7a846df2012-09-20 19:17:39175 // Returns embedder browser plugin object, or NULL if this WebContents is not
176 // an embedder.
[email protected]8ff00d72012-10-23 19:12:21177 BrowserPluginEmbedder* GetBrowserPluginEmbedder();
[email protected]7a846df2012-09-20 19:17:39178
[email protected]8ff00d72012-10-23 19:12:21179 // WebContents ------------------------------------------------------
180 virtual WebContentsDelegate* GetDelegate() OVERRIDE;
181 virtual void SetDelegate(WebContentsDelegate* delegate) OVERRIDE;
[email protected]d1198fd2012-08-13 22:50:19182 virtual NavigationControllerImpl& GetController() OVERRIDE;
183 virtual const NavigationControllerImpl& GetController() const OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21184 virtual BrowserContext* GetBrowserContext() const OVERRIDE;
185 virtual RenderProcessHost* GetRenderProcessHost() const OVERRIDE;
186 virtual RenderViewHost* GetRenderViewHost() const OVERRIDE;
[email protected]6b618e62012-08-16 12:59:18187 virtual int GetRoutingID() const OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21188 virtual RenderWidgetHostView* GetRenderWidgetHostView() const OVERRIDE;
189 virtual WebContentsView* GetView() const OVERRIDE;
190 virtual WebUI* CreateWebUI(const GURL& url) OVERRIDE;
191 virtual WebUI* GetWebUI() const OVERRIDE;
192 virtual WebUI* GetCommittedWebUI() const OVERRIDE;
[email protected]86ef6a392012-05-11 22:03:11193 virtual void SetUserAgentOverride(const std::string& override) OVERRIDE;
194 virtual const std::string& GetUserAgentOverride() const OVERRIDE;
[email protected]be1f56ab2011-12-22 06:55:31195 virtual const string16& GetTitle() const OVERRIDE;
196 virtual int32 GetMaxPageID() OVERRIDE;
197 virtual int32 GetMaxPageIDForSiteInstance(
[email protected]8ff00d72012-10-23 19:12:21198 SiteInstance* site_instance) OVERRIDE;
199 virtual SiteInstance* GetSiteInstance() const OVERRIDE;
200 virtual SiteInstance* GetPendingSiteInstance() const OVERRIDE;
[email protected]be1f56ab2011-12-22 06:55:31201 virtual bool IsLoading() const OVERRIDE;
202 virtual bool IsWaitingForResponse() const OVERRIDE;
203 virtual const net::LoadStateWithParam& GetLoadState() const OVERRIDE;
204 virtual const string16& GetLoadStateHost() const OVERRIDE;
205 virtual uint64 GetUploadSize() const OVERRIDE;
206 virtual uint64 GetUploadPosition() const OVERRIDE;
207 virtual const std::string& GetEncoding() const OVERRIDE;
208 virtual bool DisplayedInsecureContent() const OVERRIDE;
209 virtual void SetCapturingContents(bool cap) OVERRIDE;
210 virtual bool IsCrashed() const OVERRIDE;
211 virtual void SetIsCrashed(base::TerminationStatus status,
212 int error_code) OVERRIDE;
213 virtual base::TerminationStatus GetCrashedStatus() const OVERRIDE;
214 virtual bool IsBeingDestroyed() const OVERRIDE;
215 virtual void NotifyNavigationStateChanged(unsigned changed_flags) OVERRIDE;
[email protected]be1f56ab2011-12-22 06:55:31216 virtual base::TimeTicks GetLastSelectedTime() const OVERRIDE;
[email protected]9e2e4632012-07-27 16:38:41217 virtual void WasShown() OVERRIDE;
[email protected]3e324142012-06-25 18:26:33218 virtual void WasHidden() OVERRIDE;
[email protected]be1f56ab2011-12-22 06:55:31219 virtual bool NeedToFireBeforeUnload() OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27220 virtual void Stop() OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21221 virtual WebContents* Clone() OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27222 virtual gfx::NativeView GetContentNativeView() const OVERRIDE;
223 virtual gfx::NativeView GetNativeView() const OVERRIDE;
224 virtual void GetContainerBounds(gfx::Rect* out) const OVERRIDE;
225 virtual void Focus() OVERRIDE;
226 virtual void FocusThroughTabTraversal(bool reverse) OVERRIDE;
227 virtual bool ShowingInterstitialPage() const OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21228 virtual InterstitialPage* GetInterstitialPage() const OVERRIDE;
[email protected]a53209b2012-01-20 16:48:16229 virtual bool IsSavable() OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27230 virtual void OnSavePage() OVERRIDE;
231 virtual bool SavePage(const FilePath& main_file,
232 const FilePath& dir_path,
[email protected]8ff00d72012-10-23 19:12:21233 SavePageType save_type) OVERRIDE;
[email protected]aa4f3972012-03-01 18:12:12234 virtual void GenerateMHTML(
235 const FilePath& file,
236 const base::Callback<void(const FilePath&, int64)>& callback) OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27237 virtual bool IsActiveEntry(int32 page_id) OVERRIDE;
238
239 virtual const std::string& GetContentsMimeType() const OVERRIDE;
240 virtual bool WillNotifyDisconnection() const OVERRIDE;
241 virtual void SetOverrideEncoding(const std::string& encoding) OVERRIDE;
242 virtual void ResetOverrideEncoding() OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21243 virtual RendererPreferences* GetMutableRendererPrefs() OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27244 virtual void SetNewTabStartTime(const base::TimeTicks& time) OVERRIDE;
245 virtual base::TimeTicks GetNewTabStartTime() const OVERRIDE;
[email protected]e35ccd52012-05-23 16:22:47246 virtual void Close() OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27247 virtual void OnCloseStarted() OVERRIDE;
248 virtual bool ShouldAcceptDragAndDrop() const OVERRIDE;
249 virtual void SystemDragEnded() OVERRIDE;
[email protected]e35ccd52012-05-23 16:22:47250 virtual void UserGestureDone() OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27251 virtual void SetClosedByUserGesture(bool value) OVERRIDE;
252 virtual bool GetClosedByUserGesture() const OVERRIDE;
253 virtual double GetZoomLevel() const OVERRIDE;
254 virtual int GetZoomPercent(bool* enable_increment,
[email protected]9a8408902012-09-26 16:17:59255 bool* enable_decrement) const OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27256 virtual void ViewSource() OVERRIDE;
257 virtual void ViewFrameSource(const GURL& url,
258 const std::string& content_state) OVERRIDE;
259 virtual int GetMinimumZoomPercent() const OVERRIDE;
260 virtual int GetMaximumZoomPercent() const OVERRIDE;
[email protected]bcd2815602012-01-14 18:17:23261 virtual gfx::Size GetPreferredSize() const OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27262 virtual int GetContentRestrictions() const OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21263 virtual WebUI::TypeID GetWebUITypeForCurrentState() OVERRIDE;
264 virtual WebUI* GetWebUIForCurrentState() OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27265 virtual bool GotResponseToLockMouseRequest(bool allowed) OVERRIDE;
[email protected]a0358d72012-03-09 14:06:50266 virtual bool HasOpener() const OVERRIDE;
[email protected]da8543762012-03-20 08:52:20267 virtual void DidChooseColorInColorChooser(int color_chooser_id,
[email protected]55578b0a2012-04-18 14:31:32268 SkColor color) OVERRIDE;
[email protected]da8543762012-03-20 08:52:20269 virtual void DidEndColorChooser(int color_chooser_id) OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27270
271 // Implementation of PageNavigator.
[email protected]8ff00d72012-10-23 19:12:21272 virtual WebContents* OpenURL(const OpenURLParams& params) OVERRIDE;
[email protected]151a63d2011-12-20 22:32:52273
[email protected]6b618e62012-08-16 12:59:18274 // Implementation of IPC::Sender.
275 virtual bool Send(IPC::Message* message) OVERRIDE;
276
[email protected]952a68e2011-11-17 00:36:10277 // RenderViewHostDelegate ----------------------------------------------------
278
[email protected]8ff00d72012-10-23 19:12:21279 virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE;
280 virtual RenderViewHostDelegate::RendererManagement*
[email protected]952a68e2011-11-17 00:36:10281 GetRendererManagementDelegate() OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21282 virtual bool OnMessageReceived(RenderViewHost* render_view_host,
[email protected]7bb761892012-07-20 09:32:47283 const IPC::Message& message) OVERRIDE;
[email protected]be1f56ab2011-12-22 06:55:31284 virtual const GURL& GetURL() const OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21285 virtual WebContents* GetAsWebContents() OVERRIDE;
[email protected]b7a756d42012-01-23 18:08:17286 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21287 virtual void RenderViewCreated(RenderViewHost* render_view_host) OVERRIDE;
288 virtual void RenderViewReady(RenderViewHost* render_view_host) OVERRIDE;
289 virtual void RenderViewGone(RenderViewHost* render_view_host,
[email protected]952a68e2011-11-17 00:36:10290 base::TerminationStatus status,
291 int error_code) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21292 virtual void RenderViewDeleted(RenderViewHost* render_view_host) OVERRIDE;
[email protected]54047eb52012-05-08 21:45:57293 virtual void DidStartProvisionalLoadForFrame(
[email protected]8ff00d72012-10-23 19:12:21294 RenderViewHost* render_view_host,
[email protected]54047eb52012-05-08 21:45:57295 int64 frame_id,
[email protected]d37c33e2012-10-12 13:35:13296 int64 parent_frame_id,
[email protected]54047eb52012-05-08 21:45:57297 bool main_frame,
298 const GURL& opener_url,
299 const GURL& url) OVERRIDE;
[email protected]400992b2012-06-14 00:03:54300 virtual void DidRedirectProvisionalLoad(
[email protected]8ff00d72012-10-23 19:12:21301 RenderViewHost* render_view_host,
[email protected]400992b2012-06-14 00:03:54302 int32 page_id,
303 const GURL& opener_url,
304 const GURL& source_url,
305 const GURL& target_url) OVERRIDE;
[email protected]54047eb52012-05-08 21:45:57306 virtual void DidFailProvisionalLoadWithError(
[email protected]8ff00d72012-10-23 19:12:21307 RenderViewHost* render_view_host,
[email protected]54047eb52012-05-08 21:45:57308 const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params)
309 OVERRIDE;
[email protected]952a68e2011-11-17 00:36:10310 virtual void DidNavigate(
[email protected]8ff00d72012-10-23 19:12:21311 RenderViewHost* render_view_host,
[email protected]952a68e2011-11-17 00:36:10312 const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21313 virtual void UpdateState(RenderViewHost* render_view_host,
[email protected]952a68e2011-11-17 00:36:10314 int32 page_id,
315 const std::string& state) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21316 virtual void UpdateTitle(RenderViewHost* render_view_host,
[email protected]952a68e2011-11-17 00:36:10317 int32 page_id,
318 const string16& title,
319 base::i18n::TextDirection title_direction) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21320 virtual void UpdateEncoding(RenderViewHost* render_view_host,
[email protected]952a68e2011-11-17 00:36:10321 const std::string& encoding) OVERRIDE;
322 virtual void UpdateTargetURL(int32 page_id, const GURL& url) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21323 virtual void Close(RenderViewHost* render_view_host) OVERRIDE;
[email protected]952a68e2011-11-17 00:36:10324 virtual void RequestMove(const gfx::Rect& new_bounds) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21325 virtual void SwappedOut(RenderViewHost* render_view_host) OVERRIDE;
326 virtual void DidStartLoading(RenderViewHost* render_view_host) OVERRIDE;
327 virtual void DidStopLoading(RenderViewHost* render_view_host) OVERRIDE;
[email protected]952a68e2011-11-17 00:36:10328 virtual void DidCancelLoading() OVERRIDE;
329 virtual void DidChangeLoadProgress(double progress) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21330 virtual void DidUpdateFrameTree(RenderViewHost* rvh) OVERRIDE;
[email protected]87717d0e2012-04-26 02:58:43331 virtual void DocumentAvailableInMainFrame(
[email protected]8ff00d72012-10-23 19:12:21332 RenderViewHost* render_view_host) OVERRIDE;
[email protected]952a68e2011-11-17 00:36:10333 virtual void DocumentOnLoadCompletedInMainFrame(
[email protected]8ff00d72012-10-23 19:12:21334 RenderViewHost* render_view_host,
[email protected]952a68e2011-11-17 00:36:10335 int32 page_id) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21336 virtual void RequestOpenURL(RenderViewHost* rvh,
[email protected]196159d2012-05-04 17:26:54337 const GURL& url,
[email protected]8ff00d72012-10-23 19:12:21338 const Referrer& referrer,
[email protected]952a68e2011-11-17 00:36:10339 WindowOpenDisposition disposition,
340 int64 source_frame_id) OVERRIDE;
[email protected]4ad5d77d2011-12-03 02:00:48341 virtual void RequestTransferURL(
342 const GURL& url,
[email protected]8ff00d72012-10-23 19:12:21343 const Referrer& referrer,
[email protected]4ad5d77d2011-12-03 02:00:48344 WindowOpenDisposition disposition,
345 int64 source_frame_id,
[email protected]8ff00d72012-10-23 19:12:21346 const GlobalRequestID& transferred_global_request_id) OVERRIDE;
347 virtual void RouteCloseEvent(RenderViewHost* rvh) OVERRIDE;
[email protected]f546640b2012-05-15 00:03:49348 virtual void RouteMessageEvent(
[email protected]8ff00d72012-10-23 19:12:21349 RenderViewHost* rvh,
[email protected]f546640b2012-05-15 00:03:49350 const ViewMsg_PostMessage_Params& params) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21351 virtual void RunJavaScriptMessage(RenderViewHost* rvh,
[email protected]952a68e2011-11-17 00:36:10352 const string16& message,
353 const string16& default_prompt,
354 const GURL& frame_url,
[email protected]8ff00d72012-10-23 19:12:21355 JavaScriptMessageType type,
[email protected]952a68e2011-11-17 00:36:10356 IPC::Message* reply_msg,
357 bool* did_suppress_message) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21358 virtual void RunBeforeUnloadConfirm(RenderViewHost* rvh,
[email protected]952a68e2011-11-17 00:36:10359 const string16& message,
[email protected]3b3301f62012-02-29 04:32:32360 bool is_reload,
[email protected]952a68e2011-11-17 00:36:10361 IPC::Message* reply_msg) OVERRIDE;
[email protected]a796f202012-05-30 14:14:25362 virtual bool AddMessageToConsole(int32 level,
363 const string16& message,
364 int32 line_no,
365 const string16& source_id) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21366 virtual RendererPreferences GetRendererPrefs(
367 BrowserContext* browser_context) const OVERRIDE;
[email protected]6717bf272012-05-11 23:31:25368 virtual webkit_glue::WebPreferences GetWebkitPrefs() OVERRIDE;
[email protected]952a68e2011-11-17 00:36:10369 virtual void OnUserGesture() OVERRIDE;
370 virtual void OnIgnoredUIEvent() OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21371 virtual void RendererUnresponsive(RenderViewHost* render_view_host,
[email protected]952a68e2011-11-17 00:36:10372 bool is_during_unload) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21373 virtual void RendererResponsive(RenderViewHost* render_view_host) OVERRIDE;
[email protected]952a68e2011-11-17 00:36:10374 virtual void LoadStateChanged(const GURL& url,
375 const net::LoadStateWithParam& load_state,
376 uint64 upload_position,
377 uint64 upload_size) OVERRIDE;
378 virtual void WorkerCrashed() OVERRIDE;
379 virtual void Activate() OVERRIDE;
380 virtual void Deactivate() OVERRIDE;
381 virtual void LostCapture() OVERRIDE;
[email protected]952a68e2011-11-17 00:36:10382 virtual void HandleMouseDown() OVERRIDE;
383 virtual void HandleMouseUp() OVERRIDE;
[email protected]590a634e2012-07-19 16:38:23384 virtual void HandlePointerActivate() OVERRIDE;
385 virtual void HandleGestureBegin() OVERRIDE;
386 virtual void HandleGestureEnd() OVERRIDE;
[email protected]edc64de2011-11-17 20:07:38387 virtual void RunFileChooser(
[email protected]8ff00d72012-10-23 19:12:21388 RenderViewHost* render_view_host,
389 const FileChooserParams& params) OVERRIDE;
[email protected]952a68e2011-11-17 00:36:10390 virtual void ToggleFullscreenMode(bool enter_fullscreen) OVERRIDE;
391 virtual bool IsFullscreenForCurrentTab() const OVERRIDE;
392 virtual void UpdatePreferredSize(const gfx::Size& pref_size) OVERRIDE;
[email protected]61e2b3cc2012-03-02 16:13:34393 virtual void ResizeDueToAutoResize(const gfx::Size& new_size) OVERRIDE;
[email protected]a9c81f02012-06-01 00:15:44394 virtual void RequestToLockMouse(bool user_gesture,
395 bool last_unlocked_by_target) OVERRIDE;
[email protected]952a68e2011-11-17 00:36:10396 virtual void LostMouseLock() OVERRIDE;
[email protected]bafe6cd2012-05-23 23:09:50397 virtual void CreateNewWindow(
398 int route_id,
[email protected]97714c82012-06-06 10:15:13399 const ViewHostMsg_CreateWindow_Params& params,
[email protected]8ff00d72012-10-23 19:12:21400 SessionStorageNamespace* session_storage_namespace) OVERRIDE;
[email protected]bafe6cd2012-05-23 23:09:50401 virtual void CreateNewWidget(int route_id,
402 WebKit::WebPopupType popup_type) OVERRIDE;
403 virtual void CreateNewFullscreenWidget(int route_id) OVERRIDE;
404 virtual void ShowCreatedWindow(int route_id,
405 WindowOpenDisposition disposition,
406 const gfx::Rect& initial_pos,
407 bool user_gesture) OVERRIDE;
408 virtual void ShowCreatedWidget(int route_id,
409 const gfx::Rect& initial_pos) OVERRIDE;
410 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE;
411 virtual void ShowContextMenu(
[email protected]8ff00d72012-10-23 19:12:21412 const ContextMenuParams& params,
413 ContextMenuSourceType type) OVERRIDE;
[email protected]f13b4202012-06-12 23:53:23414 virtual void RequestMediaAccessPermission(
[email protected]8ff00d72012-10-23 19:12:21415 const MediaStreamRequest* request,
416 const MediaResponseCallback& callback) OVERRIDE;
[email protected]952a68e2011-11-17 00:36:10417
[email protected]16383382012-09-05 23:57:26418#if defined(OS_ANDROID)
419 virtual void AttachLayer(WebKit::WebLayer* layer) OVERRIDE;
420 virtual void RemoveLayer(WebKit::WebLayer* layer) OVERRIDE;
421#endif
422
[email protected]4ca76c02012-05-16 16:19:05423 // RenderWidgetHostDelegate --------------------------------------------------
424
[email protected]b24b68a2012-09-24 21:57:26425 virtual void RenderWidgetDeleted(
[email protected]8ff00d72012-10-23 19:12:21426 RenderWidgetHostImpl* render_widget_host) OVERRIDE;
[email protected]b87ee522012-05-18 15:16:54427 virtual bool PreHandleKeyboardEvent(
[email protected]8ff00d72012-10-23 19:12:21428 const NativeWebKeyboardEvent& event,
[email protected]b87ee522012-05-18 15:16:54429 bool* is_keyboard_shortcut) OVERRIDE;
[email protected]4ca76c02012-05-16 16:19:05430 virtual void HandleKeyboardEvent(
[email protected]8ff00d72012-10-23 19:12:21431 const NativeWebKeyboardEvent& event) OVERRIDE;
[email protected]4ca76c02012-05-16 16:19:05432
[email protected]0bfbf882011-12-22 18:19:27433 // RenderViewHostManager::Delegate -------------------------------------------
434
435 virtual bool CreateRenderViewForRenderManager(
[email protected]8ff00d72012-10-23 19:12:21436 RenderViewHost* render_view_host, int opener_route_id) OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27437 virtual void BeforeUnloadFiredFromRenderManager(
[email protected]feaded02012-09-25 19:12:55438 bool proceed, const base::TimeTicks& proceed_time,
[email protected]0bfbf882011-12-22 18:19:27439 bool* proceed_to_fire_unload) OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27440 virtual void RenderViewGoneFromRenderManager(
[email protected]8ff00d72012-10-23 19:12:21441 RenderViewHost* render_view_host) OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27442 virtual void UpdateRenderViewSizeForRenderManager() OVERRIDE;
443 virtual void NotifySwappedFromRenderManager() OVERRIDE;
[email protected]14392a52012-05-02 20:28:44444 virtual int CreateOpenerRenderViewsForRenderManager(
[email protected]8ff00d72012-10-23 19:12:21445 SiteInstance* instance) OVERRIDE;
446 virtual NavigationControllerImpl&
447 GetControllerForRenderManager() OVERRIDE;
[email protected]d2353452012-01-19 19:53:56448 virtual WebUIImpl* CreateWebUIForRenderManager(const GURL& url) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21449 virtual NavigationEntry*
[email protected]0bfbf882011-12-22 18:19:27450 GetLastCommittedNavigationEntryForRenderManager() OVERRIDE;
451 virtual bool FocusLocationBarByDefault() OVERRIDE;
452 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE;
[email protected]8ff00d72012-10-23 19:12:21453 virtual void CreateViewAndSetSizeForRVH(RenderViewHost* rvh) OVERRIDE;
[email protected]0bfbf882011-12-22 18:19:27454
[email protected]8ff00d72012-10-23 19:12:21455 // NotificationObserver ------------------------------------------------------
[email protected]14392a52012-05-02 20:28:44456
457 virtual void Observe(int type,
[email protected]8ff00d72012-10-23 19:12:21458 const NotificationSource& source,
459 const NotificationDetails& details) OVERRIDE;
[email protected]14392a52012-05-02 20:28:44460
[email protected]553602e12011-04-05 17:01:18461
[email protected]0dd3a0ab2011-02-18 08:17:44462 private:
[email protected]d202a7c2012-01-04 07:53:47463 friend class NavigationControllerImpl;
[email protected]8ff00d72012-10-23 19:12:21464 friend class WebContentsObserver;
465 friend class WebContents; // To implement factory methods.
[email protected]0dd3a0ab2011-02-18 08:17:44466
[email protected]2db9bd72012-04-13 20:20:56467 FRIEND_TEST_ALL_PREFIXES(WebContentsImplTest, NoJSMessageOnInterstitials);
468 FRIEND_TEST_ALL_PREFIXES(WebContentsImplTest, UpdateTitle);
469 FRIEND_TEST_ALL_PREFIXES(WebContentsImplTest,
470 CrossSiteCantPreemptAfterUnload);
[email protected]0dd3a0ab2011-02-18 08:17:44471 FRIEND_TEST_ALL_PREFIXES(FormStructureBrowserTest, HTMLFiles);
472 FRIEND_TEST_ALL_PREFIXES(NavigationControllerTest, HistoryNavigate);
473 FRIEND_TEST_ALL_PREFIXES(RenderViewHostManagerTest, PageDoesBackAndReload);
474
[email protected]cadaec52012-02-08 21:53:13475 // So InterstitialPageImpl can access SetIsLoading.
476 friend class InterstitialPageImpl;
[email protected]0dd3a0ab2011-02-18 08:17:44477
[email protected]80e776ae2012-03-23 16:17:20478 // TODO(brettw) TestWebContents shouldn't exist!
[email protected]8ff00d72012-10-23 19:12:21479 friend class TestWebContents;
[email protected]0dd3a0ab2011-02-18 08:17:44480
[email protected]d1198fd2012-08-13 22:50:19481 // See WebContents::Create for a description of these parameters.
[email protected]8ff00d72012-10-23 19:12:21482 WebContentsImpl(BrowserContext* browser_context,
[email protected]d1198fd2012-08-13 22:50:19483 WebContentsImpl* opener);
484
485 // Add and remove observers for page navigation notifications. Adding or
486 // removing multiple times has no effect. The order in which notifications
487 // are sent to observers is undefined. Clients must be sure to remove the
488 // observer before they go away.
[email protected]8ff00d72012-10-23 19:12:21489 void AddObserver(WebContentsObserver* observer);
490 void RemoveObserver(WebContentsObserver* observer);
[email protected]d1198fd2012-08-13 22:50:19491
[email protected]14392a52012-05-02 20:28:44492 // Clears this tab's opener if it has been closed.
[email protected]8ff00d72012-10-23 19:12:21493 void OnWebContentsDestroyed(WebContents* web_contents);
[email protected]14392a52012-05-02 20:28:44494
[email protected]51da7e32012-01-30 19:24:52495 // Callback function when showing JS dialogs.
[email protected]8ff00d72012-10-23 19:12:21496 void OnDialogClosed(RenderViewHost* rvh,
[email protected]51da7e32012-01-30 19:24:52497 IPC::Message* reply_msg,
498 bool success,
499 const string16& user_input);
500
[email protected]d8415ad92012-08-23 14:40:50501 // Callback function when requesting permission to access the PPAPI broker.
502 // |result| is true if permission was granted.
503 void OnPpapiBrokerPermissionResult(int request_id, bool result);
504
[email protected]d0759f492012-04-19 22:50:50505 // IPC message handlers.
[email protected]3a3b75a2012-06-01 08:38:36506 void OnRegisterIntentService(const webkit_glue::WebIntentServiceData& data,
507 bool user_gesture);
[email protected]678105012011-12-09 04:01:21508 void OnWebIntentDispatch(const webkit_glue::WebIntentData& intent,
[email protected]63c239322011-10-31 23:56:30509 int intent_id);
[email protected]0dd3a0ab2011-02-18 08:17:44510 void OnDidLoadResourceFromMemoryCache(const GURL& url,
[email protected]70435962011-08-02 20:13:28511 const std::string& security_info,
512 const std::string& http_request,
[email protected]6d6cfb3a2012-05-23 22:53:18513 const std::string& mime_type,
[email protected]70435962011-08-02 20:13:28514 ResourceType::Type resource_type);
[email protected]0dd3a0ab2011-02-18 08:17:44515 void OnDidDisplayInsecureContent();
516 void OnDidRunInsecureContent(const std::string& security_origin,
517 const GURL& target_url);
518 void OnDocumentLoadedInFrame(int64 frame_id);
[email protected]1a55c5be2011-11-29 11:36:31519 void OnDidFinishLoad(int64 frame_id,
520 const GURL& validated_url,
521 bool is_main_frame);
522 void OnDidFailLoadWithError(int64 frame_id,
523 const GURL& validated_url,
524 bool is_main_frame,
525 int error_code,
526 const string16& error_description);
[email protected]0dd3a0ab2011-02-18 08:17:44527 void OnUpdateContentRestrictions(int restrictions);
[email protected]0dd3a0ab2011-02-18 08:17:44528 void OnGoToEntryAtOffset(int offset);
[email protected]216813952011-05-19 22:21:26529 void OnUpdateZoomLimits(int minimum_percent,
530 int maximum_percent,
531 bool remember);
[email protected]8ff00d72012-10-23 19:12:21532 void OnSaveURL(const GURL& url, const Referrer& referrer);
[email protected]3a29a6e2011-08-24 18:26:21533 void OnEnumerateDirectory(int request_id, const FilePath& path);
[email protected]7d189022011-08-25 22:54:20534 void OnJSOutOfMemory();
[email protected]b7a756d42012-01-23 18:08:17535
[email protected]7d189022011-08-25 22:54:20536 void OnRegisterProtocolHandler(const std::string& protocol,
537 const GURL& url,
[email protected]3a3b75a2012-06-01 08:38:36538 const string16& title,
539 bool user_gesture);
[email protected]59363fc92012-09-05 03:46:31540 void OnFindReply(int request_id,
541 int number_of_matches,
542 const gfx::Rect& selection_rect,
543 int active_match_ordinal,
[email protected]b888919c2011-09-02 00:32:16544 bool final_update);
[email protected]59363fc92012-09-05 03:46:31545#if defined(OS_ANDROID)
546 void OnFindMatchRectsReply(int version,
547 const std::vector<gfx::RectF>& rects,
548 const gfx::RectF& active_rect);
549#endif
[email protected]d952a052011-09-06 18:42:45550 void OnCrashedPlugin(const FilePath& plugin_path);
[email protected]7fc4bbb2011-09-08 21:23:10551 void OnAppCacheAccessed(const GURL& manifest_url, bool blocked_by_policy);
[email protected]55578b0a2012-04-18 14:31:32552 void OnOpenColorChooser(int color_chooser_id, SkColor color);
[email protected]da8543762012-03-20 08:52:20553 void OnEndColorChooser(int color_chooser_id);
[email protected]55578b0a2012-04-18 14:31:32554 void OnSetSelectedColorInColorChooser(int color_chooser_id, SkColor color);
[email protected]8be45842012-04-13 19:49:29555 void OnPepperPluginHung(int plugin_child_id,
556 const FilePath& path,
557 bool is_hung);
[email protected]d0759f492012-04-19 22:50:50558 void OnWebUISend(const GURL& source_url,
559 const std::string& name,
560 const base::ListValue& args);
[email protected]d8415ad92012-08-23 14:40:50561 void OnRequestPpapiBrokerPermission(int request_id,
562 const GURL& url,
563 const FilePath& plugin_path);
[email protected]19be7a62012-10-01 23:03:37564 void OnBrowserPluginCreateGuest(int instance_id,
565 const std::string& storage_partition_id,
566 bool persist_storage);
[email protected]0dd3a0ab2011-02-18 08:17:44567
568 // Changes the IsLoading state and notifies delegate as needed
569 // |details| is used to provide details on the load that just finished
570 // (but can be null if not applicable). Can be overridden.
571 void SetIsLoading(bool is_loading,
[email protected]8ff00d72012-10-23 19:12:21572 LoadNotificationDetails* details);
[email protected]0dd3a0ab2011-02-18 08:17:44573
[email protected]0dd3a0ab2011-02-18 08:17:44574 // Called by derived classes to indicate that we're no longer waiting for a
575 // response. This won't actually update the throbber, but it will get picked
576 // up at the next animation step if the throbber is going.
577 void SetNotWaitingForResponse() { waiting_for_response_ = false; }
578
[email protected]0dd3a0ab2011-02-18 08:17:44579 // Navigation helpers --------------------------------------------------------
580 //
581 // These functions are helpers for Navigate() and DidNavigate().
582
583 // Handles post-navigation tasks in DidNavigate AFTER the entry has been
584 // committed to the navigation controller. Note that the navigation entry is
585 // not provided since it may be invalid/changed after being committed. The
586 // current navigation entry is in the NavigationController at this point.
587 void DidNavigateMainFramePostCommit(
[email protected]8ff00d72012-10-23 19:12:21588 const LoadCommittedDetails& details,
[email protected]0dd3a0ab2011-02-18 08:17:44589 const ViewHostMsg_FrameNavigate_Params& params);
590 void DidNavigateAnyFramePostCommit(
[email protected]8ff00d72012-10-23 19:12:21591 RenderViewHost* render_view_host,
592 const LoadCommittedDetails& details,
[email protected]0dd3a0ab2011-02-18 08:17:44593 const ViewHostMsg_FrameNavigate_Params& params);
594
[email protected]74ce1ad2011-12-16 21:51:46595 // If our controller was restored, update the max page ID associated with the
596 // given RenderViewHost to be larger than the number of restored entries.
597 // This is called in CreateRenderView before any navigations in the RenderView
598 // have begun, to prevent any races in updating RenderView::next_page_id.
[email protected]8ff00d72012-10-23 19:12:21599 void UpdateMaxPageIDIfNecessary(RenderViewHost* rvh);
[email protected]0dd3a0ab2011-02-18 08:17:44600
[email protected]0dd3a0ab2011-02-18 08:17:44601 // Saves the given title to the navigation entry and does associated work. It
602 // will update history and the view for the new title, and also synthesize
603 // titles for file URLs that have none (so we require that the URL of the
604 // entry already be set).
605 //
606 // This is used as the backend for state updates, which include a new title,
607 // or the dedicated set title message. It returns true if the new title is
608 // different and was therefore updated.
[email protected]8ff00d72012-10-23 19:12:21609 bool UpdateTitleForEntry(NavigationEntryImpl* entry,
[email protected]10f417c52011-12-28 21:04:23610 const string16& title);
[email protected]0dd3a0ab2011-02-18 08:17:44611
[email protected]b172aee2012-04-10 17:05:26612 // Causes the WebContentsImpl to navigate in the right renderer to |entry|,
613 // which must be already part of the entries in the navigation controller.
[email protected]0dd3a0ab2011-02-18 08:17:44614 // This does not change the NavigationController state.
[email protected]8ff00d72012-10-23 19:12:21615 bool NavigateToEntry(const NavigationEntryImpl& entry,
616 NavigationController::ReloadType reload_type);
[email protected]0dd3a0ab2011-02-18 08:17:44617
[email protected]b172aee2012-04-10 17:05:26618 // Sets the history for this WebContentsImpl to |history_length| entries, and
[email protected]796931a92011-08-10 01:32:14619 // moves the current page_id to the last entry in the list if it's valid.
620 // This is mainly used when a prerendered page is swapped into the current
[email protected]9e1ad4b2011-08-14 16:49:19621 // tab. The method is virtual for testing.
[email protected]b6583592012-01-25 19:52:33622 virtual void SetHistoryLengthAndPrune(
[email protected]8ff00d72012-10-23 19:12:21623 const SiteInstance* site_instance,
[email protected]b6583592012-01-25 19:52:33624 int merge_history_length,
625 int32 minimum_page_id);
[email protected]796931a92011-08-10 01:32:14626
[email protected]14392a52012-05-02 20:28:44627 // Recursively creates swapped out RenderViews for this tab's opener chain
628 // (including this tab) in the given SiteInstance, allowing other tabs to send
629 // cross-process JavaScript calls to their opener(s). Returns the route ID of
630 // this tab's RenderView for |instance|.
[email protected]8ff00d72012-10-23 19:12:21631 int CreateOpenerRenderViews(SiteInstance* instance);
[email protected]14392a52012-05-02 20:28:44632
[email protected]bafe6cd2012-05-23 23:09:50633 // Helper for CreateNewWidget/CreateNewFullscreenWidget.
634 void CreateNewWidget(int route_id,
635 bool is_fullscreen,
636 WebKit::WebPopupType popup_type);
637
638 // Helper for ShowCreatedWidget/ShowCreatedFullscreenWidget.
639 void ShowCreatedWidget(int route_id,
640 bool is_fullscreen,
641 const gfx::Rect& initial_pos);
642
643 // Finds the new RenderWidgetHost and returns it. Note that this can only be
644 // called once as this call also removes it from the internal map.
[email protected]8ff00d72012-10-23 19:12:21645 RenderWidgetHostView* GetCreatedWidget(int route_id);
[email protected]bafe6cd2012-05-23 23:09:50646
647 // Finds the new WebContentsImpl by route_id, initializes it for
648 // renderer-initiated creation, and returns it. Note that this can only be
649 // called once as this call also removes it from the internal map.
650 WebContentsImpl* GetCreatedWindow(int route_id);
651
[email protected]0dd3a0ab2011-02-18 08:17:44652 // Misc non-view stuff -------------------------------------------------------
653
654 // Helper functions for sending notifications.
655 void NotifySwapped();
656 void NotifyConnected();
657 void NotifyDisconnected();
658
[email protected]be1f56ab2011-12-22 06:55:31659 void SetEncoding(const std::string& encoding);
660
[email protected]27678b2a2012-02-04 22:09:14661 // Save a URL to the local filesystem.
[email protected]20b433a2012-05-15 21:23:46662 void SaveURL(const GURL& url,
[email protected]8ff00d72012-10-23 19:12:21663 const Referrer& referrer,
[email protected]20b433a2012-05-15 21:23:46664 bool is_main_frame);
[email protected]27678b2a2012-02-04 22:09:14665
[email protected]8ff00d72012-10-23 19:12:21666 RenderViewHostImpl* GetRenderViewHostImpl();
[email protected]9f76c1e2012-03-05 15:15:58667
[email protected]7a846df2012-09-20 19:17:39668 // Removes browser plugin embedder if there is one.
669 void RemoveBrowserPluginEmbedder();
670
[email protected]0dd3a0ab2011-02-18 08:17:44671 // Data for core operation ---------------------------------------------------
672
673 // Delegate for notifying our owner about stuff. Not owned by us.
[email protected]8ff00d72012-10-23 19:12:21674 WebContentsDelegate* delegate_;
[email protected]0dd3a0ab2011-02-18 08:17:44675
676 // Handles the back/forward list and loading.
[email protected]d202a7c2012-01-04 07:53:47677 NavigationControllerImpl controller_;
[email protected]0dd3a0ab2011-02-18 08:17:44678
679 // The corresponding view.
[email protected]8ff00d72012-10-23 19:12:21680 scoped_ptr<WebContentsView> view_;
[email protected]0dd3a0ab2011-02-18 08:17:44681
[email protected]5a3bdf52012-05-24 15:12:57682 // The view of the RVHD. Usually this is our WebContentsView implementation,
683 // but if an embedder uses a different WebContentsView, they'll need to
684 // provide this.
[email protected]8ff00d72012-10-23 19:12:21685 RenderViewHostDelegateView* render_view_host_delegate_view_;
[email protected]5a3bdf52012-05-24 15:12:57686
[email protected]bafe6cd2012-05-23 23:09:50687 // Tracks created WebContentsImpl objects that have not been shown yet. They
688 // are identified by the route ID passed to CreateNewWindow.
689 typedef std::map<int, WebContentsImpl*> PendingContents;
690 PendingContents pending_contents_;
691
692 // These maps hold on to the widgets that we created on behalf of the renderer
693 // that haven't shown yet.
[email protected]8ff00d72012-10-23 19:12:21694 typedef std::map<int, RenderWidgetHostView*> PendingWidgetViews;
[email protected]bafe6cd2012-05-23 23:09:50695 PendingWidgetViews pending_widget_views_;
696
[email protected]996042972011-11-08 22:43:59697 // A list of observers notified when page state changes. Weak references.
698 // This MUST be listed above render_manager_ since at destruction time the
699 // latter might cause RenderViewHost's destructor to call us and we might use
700 // the observer list then.
[email protected]8ff00d72012-10-23 19:12:21701 ObserverList<WebContentsObserver> observers_;
[email protected]996042972011-11-08 22:43:59702
[email protected]14392a52012-05-02 20:28:44703 // The tab that opened this tab, if any. Will be set to null if the opener
704 // is closed.
705 WebContentsImpl* opener_;
706
[email protected]0dd3a0ab2011-02-18 08:17:44707 // Helper classes ------------------------------------------------------------
708
709 // Manages creation and swapping of render views.
710 RenderViewHostManager render_manager_;
711
[email protected]483623eb2011-10-25 09:30:00712 // Manages injecting Java objects into all RenderViewHosts associated with
[email protected]b172aee2012-04-10 17:05:26713 // this WebContentsImpl.
[email protected]483623eb2011-10-25 09:30:00714 scoped_ptr<JavaBridgeDispatcherHostManager>
715 java_bridge_dispatcher_host_manager_;
716
[email protected]c7dd2f62011-07-18 15:57:59717 // SavePackage, lazily created.
718 scoped_refptr<SavePackage> save_package_;
719
[email protected]0dd3a0ab2011-02-18 08:17:44720 // Data for loading state ----------------------------------------------------
721
722 // Indicates whether we're currently loading a resource.
723 bool is_loading_;
724
725 // Indicates if the tab is considered crashed.
726 base::TerminationStatus crashed_status_;
727 int crashed_error_code_;
728
[email protected]ca13a442012-04-17 14:00:12729 // Whether this WebContents is waiting for a first-response for the
[email protected]be1f56ab2011-12-22 06:55:31730 // main resource of the page. This controls whether the throbber state is
731 // "waiting" or "loading."
[email protected]0dd3a0ab2011-02-18 08:17:44732 bool waiting_for_response_;
733
[email protected]74ce1ad2011-12-16 21:51:46734 // Map of SiteInstance ID to max page ID for this tab. A page ID is specific
735 // to a given tab and SiteInstance, and must be valid for the lifetime of the
[email protected]b172aee2012-04-10 17:05:26736 // WebContentsImpl.
[email protected]74ce1ad2011-12-16 21:51:46737 std::map<int32, int32> max_page_ids_;
[email protected]0dd3a0ab2011-02-18 08:17:44738
739 // System time at which the current load was started.
740 base::TimeTicks current_load_start_;
741
742 // The current load state and the URL associated with it.
[email protected]9c235f042011-08-10 22:28:21743 net::LoadStateWithParam load_state_;
[email protected]0dd3a0ab2011-02-18 08:17:44744 string16 load_state_host_;
745 // Upload progress, for displaying in the status bar.
746 // Set to zero when there is no significant upload happening.
747 uint64 upload_size_;
748 uint64 upload_position_;
749
750 // Data for current page -----------------------------------------------------
751
[email protected]987fc3a2011-05-26 14:18:09752 // When a title cannot be taken from any entry, this title will be used.
753 string16 page_title_when_no_navigation_entry_;
754
[email protected]0dd3a0ab2011-02-18 08:17:44755 // When a navigation occurs, we record its contents MIME type. It can be
756 // used to check whether we can do something for some special contents.
757 std::string contents_mime_type_;
758
759 // Character encoding.
760 std::string encoding_;
761
[email protected]0dd3a0ab2011-02-18 08:17:44762 // True if this is a secure page which displayed insecure content.
763 bool displayed_insecure_content_;
764
[email protected]0dd3a0ab2011-02-18 08:17:44765 // Data for misc internal state ----------------------------------------------
766
[email protected]ca13a442012-04-17 14:00:12767 // Whether the WebContents is currently being screenshotted.
[email protected]0dd3a0ab2011-02-18 08:17:44768 bool capturing_contents_;
769
770 // See getter above.
771 bool is_being_destroyed_;
772
773 // Indicates whether we should notify about disconnection of this
[email protected]b172aee2012-04-10 17:05:26774 // WebContentsImpl. This is used to ensure disconnection notifications only
[email protected]0dd3a0ab2011-02-18 08:17:44775 // happen if a connection notification has happened and that they happen only
776 // once.
777 bool notify_disconnection_;
778
[email protected]2e5b90c2011-08-16 21:11:55779 // Pointer to the JavaScript dialog creator, lazily assigned. Used because the
[email protected]b172aee2012-04-10 17:05:26780 // delegate of this WebContentsImpl is nulled before its destructor is called.
[email protected]8ff00d72012-10-23 19:12:21781 JavaScriptDialogCreator* dialog_creator_;
[email protected]2e5b90c2011-08-16 21:11:55782
[email protected]0dd3a0ab2011-02-18 08:17:44783#if defined(OS_WIN)
784 // Handle to an event that's set when the page is showing a message box (or
785 // equivalent constrained window). Plugin processes check this to know if
786 // they should pump messages then.
787 base::win::ScopedHandle message_box_active_;
788#endif
789
[email protected]0dd3a0ab2011-02-18 08:17:44790 // Set to true when there is an active "before unload" dialog. When true,
791 // we've forced the throbber to start in Navigate, and we need to remember to
792 // turn it off in OnJavaScriptMessageBoxClosed if the navigation is canceled.
793 bool is_showing_before_unload_dialog_;
794
[email protected]0dd3a0ab2011-02-18 08:17:44795 // Settings that get passed to the renderer process.
[email protected]8ff00d72012-10-23 19:12:21796 RendererPreferences renderer_preferences_;
[email protected]0dd3a0ab2011-02-18 08:17:44797
798 // If this tab was created from a renderer using window.open, this will be
799 // non-NULL and represent the WebUI of the opening renderer.
[email protected]8ff00d72012-10-23 19:12:21800 WebUI::TypeID opener_web_ui_type_;
[email protected]0dd3a0ab2011-02-18 08:17:44801
802 // The time that we started to create the new tab page.
803 base::TimeTicks new_tab_start_time_;
804
[email protected]3bbacc5b2012-04-17 17:46:15805 // The time that we started to close this WebContents.
806 base::TimeTicks close_start_time_;
[email protected]0dd3a0ab2011-02-18 08:17:44807
[email protected]feaded02012-09-25 19:12:55808 // The time when onbeforeunload ended.
809 base::TimeTicks before_unload_end_time_;
810
[email protected]0dd3a0ab2011-02-18 08:17:44811 // The time that this tab was last selected.
812 base::TimeTicks last_selected_time_;
813
[email protected]0dd3a0ab2011-02-18 08:17:44814 // See description above setter.
815 bool closed_by_user_gesture_;
816
817 // Minimum/maximum zoom percent.
818 int minimum_zoom_percent_;
819 int maximum_zoom_percent_;
820 // If true, the default zoom limits have been overriden for this tab, in which
821 // case we don't want saved settings to apply to it and we don't want to
822 // remember it.
823 bool temporary_zoom_settings_;
824
[email protected]bcd2815602012-01-14 18:17:23825 // The intrinsic size of the page.
826 gfx::Size preferred_size_;
827
[email protected]0dd3a0ab2011-02-18 08:17:44828 // Content restrictions, used to disable print/copy etc based on content's
829 // (full-page plugins for now only) permissions.
830 int content_restrictions_;
831
[email protected]da8543762012-03-20 08:52:20832 // Color chooser that was opened by this tab.
[email protected]8ff00d72012-10-23 19:12:21833 ColorChooser* color_chooser_;
[email protected]da8543762012-03-20 08:52:20834
[email protected]7a846df2012-09-20 19:17:39835 // Manages the embedder state for browser plugins, if this WebContents is an
836 // embedder; NULL otherwise.
[email protected]8ff00d72012-10-23 19:12:21837 scoped_ptr<BrowserPluginEmbedder> browser_plugin_embedder_;
[email protected]7a846df2012-09-20 19:17:39838 // Manages the guest state for browser plugin, if this WebContents is a guest;
839 // NULL otherwise.
[email protected]8ff00d72012-10-23 19:12:21840 scoped_ptr<BrowserPluginGuest> browser_plugin_guest_;
[email protected]7a846df2012-09-20 19:17:39841
[email protected]f53a9f872012-05-24 02:07:06842 // This must be at the end, or else we might get notifications and use other
843 // member variables that are gone.
[email protected]8ff00d72012-10-23 19:12:21844 NotificationRegistrar registrar_;
[email protected]f53a9f872012-05-24 02:07:06845
[email protected]7bb761892012-07-20 09:32:47846 // Used during IPC message dispatching so that the handlers can get a pointer
847 // to the RVH through which the message was received.
[email protected]8ff00d72012-10-23 19:12:21848 RenderViewHost* message_source_;
[email protected]7bb761892012-07-20 09:32:47849
[email protected]b24b68a2012-09-24 21:57:26850 // All live RenderWidgetHostImpls that are created by this object and may
851 // outlive it.
[email protected]8ff00d72012-10-23 19:12:21852 std::set<RenderWidgetHostImpl*> created_widgets_;
[email protected]b24b68a2012-09-24 21:57:26853
[email protected]b172aee2012-04-10 17:05:26854 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
[email protected]0dd3a0ab2011-02-18 08:17:44855};
856
[email protected]8ff00d72012-10-23 19:12:21857} // namespace content
858
[email protected]93ddb3c2012-04-11 21:44:29859#endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_