Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(740)

Side by Side Diff: chrome/browser/chrome_content_browser_client.h

Issue 7717011: Get rid of static TabContentsView::Create function since the interface is in content, but the imp... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Fix mac build Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "content/browser/content_browser_client.h" 10 #include "content/browser/content_browser_client.h"
11 11
12 namespace chrome { 12 namespace chrome {
13 13
14 class ChromeContentBrowserClient : public content::ContentBrowserClient { 14 class ChromeContentBrowserClient : public content::ContentBrowserClient {
15 public: 15 public:
16 virtual TabContentsView* CreateTabContentsView(
17 TabContents* tab_contents) OVERRIDE;
16 virtual void RenderViewHostCreated(RenderViewHost* render_view_host) OVERRIDE; 18 virtual void RenderViewHostCreated(RenderViewHost* render_view_host) OVERRIDE;
17 virtual void BrowserRenderProcessHostCreated( 19 virtual void BrowserRenderProcessHostCreated(
18 BrowserRenderProcessHost* host) OVERRIDE; 20 BrowserRenderProcessHost* host) OVERRIDE;
19 virtual void PluginProcessHostCreated(PluginProcessHost* host) OVERRIDE; 21 virtual void PluginProcessHostCreated(PluginProcessHost* host) OVERRIDE;
20 virtual void WorkerProcessHostCreated(WorkerProcessHost* host) OVERRIDE; 22 virtual void WorkerProcessHostCreated(WorkerProcessHost* host) OVERRIDE;
21 virtual content::WebUIFactory* GetWebUIFactory() OVERRIDE; 23 virtual content::WebUIFactory* GetWebUIFactory() OVERRIDE;
22 virtual bool ShouldUseProcessPerSite(content::BrowserContext* browser_context, 24 virtual bool ShouldUseProcessPerSite(content::BrowserContext* browser_context,
23 const GURL& effective_url) OVERRIDE; 25 const GURL& effective_url) OVERRIDE;
24 virtual GURL GetEffectiveURL(content::BrowserContext* browser_context, 26 virtual GURL GetEffectiveURL(content::BrowserContext* browser_context,
25 const GURL& url) OVERRIDE; 27 const GURL& url) OVERRIDE;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 #if defined(USE_NSS) 119 #if defined(USE_NSS)
118 virtual 120 virtual
119 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( 121 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate(
120 const GURL& url) OVERRIDE; 122 const GURL& url) OVERRIDE;
121 #endif 123 #endif
122 }; 124 };
123 125
124 } // namespace chrome 126 } // namespace chrome
125 127
126 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 128 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698