summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chrome_content_browser_client.h
diff options
context:
space:
mode:
authorjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-07 15:02:11 +0000
committerjoi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-07 15:02:11 +0000
commiteaabba206ae14905ef3a922e7b839cab285dd940 (patch)
tree13f52a325e90d2d5522ddac3e558a54eea026d06 /chrome/browser/chrome_content_browser_client.h
parent15b43fba084a9880c76736167c782dea8df24a78 (diff)
downloadchromium_src-eaabba206ae14905ef3a922e7b839cab285dd940.zip
chromium_src-eaabba206ae14905ef3a922e7b839cab285dd940.tar.gz
chromium_src-eaabba206ae14905ef3a922e7b839cab285dd940.tar.bz2
Move Render(View|Widget)Host and associated classes to content namespace.
TBR=jam@chromium.org BUG=98716 Review URL: https://chromiumcodereview.appspot.com/9600036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125388 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_content_browser_client.h')
-rw-r--r--chrome/browser/chrome_content_browser_client.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/chrome/browser/chrome_content_browser_client.h b/chrome/browser/chrome_content_browser_client.h
index a38b6bb..748eef9 100644
--- a/chrome/browser/chrome_content_browser_client.h
+++ b/chrome/browser/chrome_content_browser_client.h
@@ -27,7 +27,8 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient {
const content::MainFunctionParams& parameters) OVERRIDE;
virtual content::WebContentsView* CreateWebContentsView(
content::WebContents* web_contents) OVERRIDE;
- virtual void RenderViewHostCreated(RenderViewHost* render_view_host) OVERRIDE;
+ virtual void RenderViewHostCreated(
+ content::RenderViewHost* render_view_host) OVERRIDE;
virtual void RenderProcessHostCreated(
content::RenderProcessHost* host) OVERRIDE;
virtual content::WebUIControllerFactory* GetWebUIControllerFactory() OVERRIDE;
@@ -150,16 +151,16 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient {
virtual net::NetLog* GetNetLog() OVERRIDE;
virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE;
virtual bool IsFastShutdownPossible() OVERRIDE;
- virtual void OverrideWebkitPrefs(RenderViewHost* rvh,
+ virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh,
const GURL& url,
WebPreferences* prefs) OVERRIDE;
- virtual void UpdateInspectorSetting(RenderViewHost* rvh,
+ virtual void UpdateInspectorSetting(content::RenderViewHost* rvh,
const std::string& key,
const std::string& value) OVERRIDE;
- virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE;
+ virtual void ClearInspectorSettings(content::RenderViewHost* rvh) OVERRIDE;
virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE;
- virtual void ClearCache(RenderViewHost* rvh) OVERRIDE;
- virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE;
+ virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE;
+ virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE;
virtual FilePath GetDefaultDownloadDirectory() OVERRIDE;
virtual std::string GetDefaultDownloadName() OVERRIDE;
virtual bool AllowSocketAPI(content::BrowserContext* browser_context,