diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-11 23:59:28 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-11 23:59:28 +0000 |
commit | 76518718328a0ec02cbd2c989ed08cb63a8a8269 (patch) | |
tree | e31157b8f3321fe1feebce50918bdcb5c975ee8a /content/public | |
parent | f5e959226bf485f536dac917a108ba17affaae57 (diff) | |
download | chromium_src-76518718328a0ec02cbd2c989ed08cb63a8a8269.zip chromium_src-76518718328a0ec02cbd2c989ed08cb63a8a8269.tar.gz chromium_src-76518718328a0ec02cbd2c989ed08cb63a8a8269.tar.bz2 |
Get rid of RenderViewHostManager usage in chrome.
BUG=98716
Review URL: http://codereview.chromium.org/9139007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117327 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public')
-rw-r--r-- | content/public/browser/notification_types.h | 4 | ||||
-rw-r--r-- | content/public/browser/web_contents.h | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/content/public/browser/notification_types.h b/content/public/browser/notification_types.h index c3f1381..363df21 100644 --- a/content/public/browser/notification_types.h +++ b/content/public/browser/notification_types.h @@ -291,8 +291,8 @@ enum NotificationType { // This is sent to notify that the RenderViewHost displayed in a // TabContents has changed. Source is the NavigationController for which the - // change happened, details is the previous RenderViewHost (can be NULL when - // the first RenderViewHost is set). + // change happened, details is a + // std::pair::<old RenderViewHost, new RenderViewHost>). NOTIFICATION_RENDER_VIEW_HOST_CHANGED, // Indicates that the render view host has received an accessibility tree diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h index 69afc41..bcfe84f 100644 --- a/content/public/browser/web_contents.h +++ b/content/public/browser/web_contents.h @@ -19,7 +19,6 @@ class InterstitialPage; class RenderViewHost; -class RenderViewHostManager; class RenderWidgetHostView; class SessionStorageNamespace; class SiteInstance; @@ -201,9 +200,6 @@ class WebContents : public PageNavigator { // returns false. virtual bool NeedToFireBeforeUnload() = 0; - // Expose the render manager for testing. - virtual RenderViewHostManager* GetRenderManagerForTesting() = 0; - // Commands ------------------------------------------------------------------ // Stop any pending navigation. |