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

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

Issue 7464009: Removal of Profile from content part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: slight tweaking for comments 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
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 class QuotaPermissionContext; 12 class QuotaPermissionContext;
13 13
14 namespace chrome { 14 namespace chrome {
15 15
16 class ChromeContentBrowserClient : public content::ContentBrowserClient { 16 class ChromeContentBrowserClient : public content::ContentBrowserClient {
17 public: 17 public:
18 virtual void RenderViewHostCreated(RenderViewHost* render_view_host) OVERRIDE; 18 virtual void RenderViewHostCreated(RenderViewHost* render_view_host) OVERRIDE;
19 virtual void BrowserRenderProcessHostCreated( 19 virtual void BrowserRenderProcessHostCreated(
20 BrowserRenderProcessHost* host) OVERRIDE; 20 BrowserRenderProcessHost* host) OVERRIDE;
21 virtual void PluginProcessHostCreated(PluginProcessHost* host) OVERRIDE; 21 virtual void PluginProcessHostCreated(PluginProcessHost* host) OVERRIDE;
22 virtual void WorkerProcessHostCreated(WorkerProcessHost* host) OVERRIDE; 22 virtual void WorkerProcessHostCreated(WorkerProcessHost* host) OVERRIDE;
23 virtual content::WebUIFactory* GetWebUIFactory() OVERRIDE; 23 virtual content::WebUIFactory* GetWebUIFactory() OVERRIDE;
24 virtual bool ShouldUseProcessPerSite(Profile* profile, 24 virtual bool ShouldUseProcessPerSite(content::BrowserContext* browser_context,
25 const GURL& effective_url) OVERRIDE; 25 const GURL& effective_url) OVERRIDE;
26 virtual GURL GetEffectiveURL(Profile* profile, const GURL& url) OVERRIDE; 26 virtual GURL GetEffectiveURL(content::BrowserContext* browser_context,
27 const GURL& url) OVERRIDE;
27 virtual bool IsURLSameAsAnySiteInstance(const GURL& url) OVERRIDE; 28 virtual bool IsURLSameAsAnySiteInstance(const GURL& url) OVERRIDE;
28 virtual std::string GetCanonicalEncodingNameByAliasName( 29 virtual std::string GetCanonicalEncodingNameByAliasName(
29 const std::string& alias_name) OVERRIDE; 30 const std::string& alias_name) OVERRIDE;
30 virtual void AppendExtraCommandLineSwitches(CommandLine* command_line, 31 virtual void AppendExtraCommandLineSwitches(CommandLine* command_line,
31 int child_process_id) OVERRIDE; 32 int child_process_id) OVERRIDE;
32 virtual std::string GetApplicationLocale() OVERRIDE; 33 virtual std::string GetApplicationLocale() OVERRIDE;
33 virtual std::string GetAcceptLangs(const TabContents* tab) OVERRIDE; 34 virtual std::string GetAcceptLangs(const TabContents* tab) OVERRIDE;
34 virtual SkBitmap* GetDefaultFavicon() OVERRIDE; 35 virtual SkBitmap* GetDefaultFavicon() OVERRIDE;
35 virtual bool AllowAppCache(const GURL& manifest_url, 36 virtual bool AllowAppCache(const GURL& manifest_url,
36 const content::ResourceContext& context) OVERRIDE; 37 const content::ResourceContext& context) OVERRIDE;
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 WindowContainerType container_type, 90 WindowContainerType container_type,
90 const content::ResourceContext& context) OVERRIDE; 91 const content::ResourceContext& context) OVERRIDE;
91 virtual std::string GetWorkerProcessTitle( 92 virtual std::string GetWorkerProcessTitle(
92 const GURL& url, const content::ResourceContext& context) OVERRIDE; 93 const GURL& url, const content::ResourceContext& context) OVERRIDE;
93 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; 94 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE;
94 virtual ui::Clipboard* GetClipboard() OVERRIDE; 95 virtual ui::Clipboard* GetClipboard() OVERRIDE;
95 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; 96 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE;
96 virtual DevToolsManager* GetDevToolsManager() OVERRIDE; 97 virtual DevToolsManager* GetDevToolsManager() OVERRIDE;
97 virtual net::NetLog* GetNetLog() OVERRIDE; 98 virtual net::NetLog* GetNetLog() OVERRIDE;
98 virtual bool IsFastShutdownPossible() OVERRIDE; 99 virtual bool IsFastShutdownPossible() OVERRIDE;
99 virtual WebPreferences GetWebkitPrefs(Profile* profile, 100 virtual WebPreferences GetWebkitPrefs(
100 bool is_web_ui) OVERRIDE; 101 content::BrowserContext* browser_context,
102 bool is_web_ui) OVERRIDE;
101 virtual void UpdateInspectorSetting(RenderViewHost* rvh, 103 virtual void UpdateInspectorSetting(RenderViewHost* rvh,
102 const std::string& key, 104 const std::string& key,
103 const std::string& value) OVERRIDE; 105 const std::string& value) OVERRIDE;
104 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; 106 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE;
105 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; 107 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE;
106 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; 108 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE;
107 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; 109 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE;
108 virtual void GetSaveDir(TabContents* tab_contents, 110 virtual void GetSaveDir(TabContents* tab_contents,
109 FilePath* website_save_dir, 111 FilePath* website_save_dir,
110 FilePath* download_save_dir) OVERRIDE; 112 FilePath* download_save_dir) OVERRIDE;
111 virtual void ChooseSavePath(const base::WeakPtr<SavePackage>& save_package, 113 virtual void ChooseSavePath(const base::WeakPtr<SavePackage>& save_package,
112 const FilePath& suggested_path, 114 const FilePath& suggested_path,
113 bool can_save_as_complete) OVERRIDE; 115 bool can_save_as_complete) OVERRIDE;
114 116
115 #if defined(OS_POSIX) && !defined(OS_MACOSX) 117 #if defined(OS_POSIX) && !defined(OS_MACOSX)
116 // Can return an optional fd for crash handling, otherwise returns -1. 118 // Can return an optional fd for crash handling, otherwise returns -1.
117 virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE; 119 virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE;
118 #endif 120 #endif
119 #if defined(USE_NSS) 121 #if defined(USE_NSS)
120 virtual 122 virtual
121 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( 123 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate(
122 const GURL& url) OVERRIDE; 124 const GURL& url) OVERRIDE;
123 #endif 125 #endif
124 }; 126 };
125 127
126 } // namespace chrome 128 } // namespace chrome
127 129
128 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 130 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/browser/browser_about_handler.cc ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698