| 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 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 <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 virtual std::string GetWorkerProcessTitle( | 106 virtual std::string GetWorkerProcessTitle( |
| 107 const GURL& url, const content::ResourceContext& context) OVERRIDE; | 107 const GURL& url, const content::ResourceContext& context) OVERRIDE; |
| 108 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; | 108 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; |
| 109 virtual ui::Clipboard* GetClipboard() OVERRIDE; | 109 virtual ui::Clipboard* GetClipboard() OVERRIDE; |
| 110 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; | 110 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; |
| 111 virtual DevToolsManager* GetDevToolsManager() OVERRIDE; | 111 virtual DevToolsManager* GetDevToolsManager() OVERRIDE; |
| 112 virtual net::NetLog* GetNetLog() OVERRIDE; | 112 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 113 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE; | 113 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE; |
| 114 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 114 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 115 virtual bool IsFastShutdownPossible() OVERRIDE; | 115 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 116 virtual WebPreferences GetWebkitPrefs( | 116 virtual WebPreferences GetWebkitPrefs(RenderViewHost* rvh) OVERRIDE; |
| 117 content::BrowserContext* browser_context, | |
| 118 bool is_web_ui) OVERRIDE; | |
| 119 virtual void UpdateInspectorSetting(RenderViewHost* rvh, | 117 virtual void UpdateInspectorSetting(RenderViewHost* rvh, |
| 120 const std::string& key, | 118 const std::string& key, |
| 121 const std::string& value) OVERRIDE; | 119 const std::string& value) OVERRIDE; |
| 122 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; | 120 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; |
| 123 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; | 121 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; |
| 124 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; | 122 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; |
| 125 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; | 123 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; |
| 126 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; | 124 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; |
| 127 virtual std::string GetDefaultDownloadName() OVERRIDE; | 125 virtual std::string GetDefaultDownloadName() OVERRIDE; |
| 128 | 126 |
| 129 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 127 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 130 virtual int GetCrashSignalFD(const CommandLine& command_line) OVERRIDE; | 128 virtual int GetCrashSignalFD(const CommandLine& command_line) OVERRIDE; |
| 131 #endif | 129 #endif |
| 132 #if defined(OS_WIN) | 130 #if defined(OS_WIN) |
| 133 virtual const wchar_t* GetResourceDllName() OVERRIDE; | 131 virtual const wchar_t* GetResourceDllName() OVERRIDE; |
| 134 #endif | 132 #endif |
| 135 #if defined(USE_NSS) | 133 #if defined(USE_NSS) |
| 136 virtual | 134 virtual |
| 137 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 135 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
| 138 const GURL& url) OVERRIDE; | 136 const GURL& url) OVERRIDE; |
| 139 #endif | 137 #endif |
| 140 }; | 138 }; |
| 141 | 139 |
| 142 } // namespace chrome | 140 } // namespace chrome |
| 143 | 141 |
| 144 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 142 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |