OLD | NEW |
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 CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ |
6 #define CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_BROWSER_MOCK_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 content { | 12 namespace content { |
13 | 13 |
14 // Base for unit tests that need to mock the ContentBrowserClient. | 14 // Base for unit tests that need to mock the ContentBrowserClient. |
15 class MockContentBrowserClient : public ContentBrowserClient { | 15 class MockContentBrowserClient : public ContentBrowserClient { |
16 public: | 16 public: |
17 virtual ~MockContentBrowserClient(); | 17 virtual ~MockContentBrowserClient(); |
18 | 18 |
19 virtual void RenderViewHostCreated( | 19 virtual void RenderViewHostCreated( |
20 RenderViewHost* render_view_host) OVERRIDE; | 20 RenderViewHost* render_view_host) OVERRIDE; |
21 virtual void BrowserRenderProcessHostCreated( | 21 virtual void BrowserRenderProcessHostCreated( |
22 BrowserRenderProcessHost* host) OVERRIDE; | 22 BrowserRenderProcessHost* host) OVERRIDE; |
23 virtual void PluginProcessHostCreated(PluginProcessHost* host) OVERRIDE; | 23 virtual void PluginProcessHostCreated(PluginProcessHost* host) OVERRIDE; |
24 virtual void WorkerProcessHostCreated(WorkerProcessHost* host) OVERRIDE; | 24 virtual void WorkerProcessHostCreated(WorkerProcessHost* host) OVERRIDE; |
25 virtual WebUIFactory* GetWebUIFactory() OVERRIDE; | 25 virtual WebUIFactory* GetWebUIFactory() OVERRIDE; |
26 virtual GURL GetEffectiveURL(Profile* profile, const GURL& url) OVERRIDE; | 26 virtual GURL GetEffectiveURL(content::BrowserContext* 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 const GURL& source_url, | 89 const GURL& source_url, |
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 bool IsFastShutdownPossible() OVERRIDE; | 98 virtual bool IsFastShutdownPossible() OVERRIDE; |
98 virtual WebPreferences GetWebkitPrefs(Profile* profile, | 99 virtual WebPreferences GetWebkitPrefs(content::BrowserContext* context, |
99 bool is_web_ui) OVERRIDE; | 100 bool is_web_ui) OVERRIDE; |
100 virtual void UpdateInspectorSetting(RenderViewHost* rvh, | 101 virtual void UpdateInspectorSetting(RenderViewHost* rvh, |
101 const std::string& key, | 102 const std::string& key, |
102 const std::string& value) OVERRIDE; | 103 const std::string& value) OVERRIDE; |
103 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; | 104 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; |
104 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; | 105 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; |
105 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; | 106 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; |
106 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; | 107 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; |
107 virtual void ChooseSavePath(const base::WeakPtr<SavePackage>& save_package, | 108 virtual void ChooseSavePath(const base::WeakPtr<SavePackage>& save_package, |
108 const FilePath& suggested_path, | 109 const FilePath& suggested_path, |
109 bool can_save_as_complete) OVERRIDE; | 110 bool can_save_as_complete) OVERRIDE; |
110 | 111 |
111 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 112 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
112 virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE; | 113 virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE; |
113 #endif | 114 #endif |
114 | 115 |
115 #if defined(USE_NSS) | 116 #if defined(USE_NSS) |
116 virtual | 117 virtual |
117 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 118 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
118 const GURL& url) OVERRIDE; | 119 const GURL& url) OVERRIDE; |
119 #endif | 120 #endif |
120 }; | 121 }; |
121 | 122 |
122 } // namespace content | 123 } // namespace content |
123 | 124 |
124 #endif // CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ | 125 #endif // CONTENT_BROWSER_MOCK_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |