| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 WindowContainerType container_type, | 118 WindowContainerType container_type, |
| 119 const content::ResourceContext& context, | 119 const content::ResourceContext& context, |
| 120 int render_process_id) OVERRIDE; | 120 int render_process_id) OVERRIDE; |
| 121 virtual std::string GetWorkerProcessTitle( | 121 virtual std::string GetWorkerProcessTitle( |
| 122 const GURL& url, const content::ResourceContext& context) OVERRIDE; | 122 const GURL& url, const content::ResourceContext& context) OVERRIDE; |
| 123 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; | 123 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; |
| 124 virtual ui::Clipboard* GetClipboard() OVERRIDE; | 124 virtual ui::Clipboard* GetClipboard() OVERRIDE; |
| 125 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; | 125 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; |
| 126 virtual net::NetLog* GetNetLog() OVERRIDE; | 126 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 127 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE; | 127 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE; |
| 128 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 128 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 129 virtual bool IsFastShutdownPossible() OVERRIDE; | 129 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 130 virtual WebPreferences GetWebkitPrefs(RenderViewHost* rvh) OVERRIDE; | 130 virtual WebPreferences GetWebkitPrefs(RenderViewHost* rvh) OVERRIDE; |
| 131 virtual void UpdateInspectorSetting(RenderViewHost* rvh, | 131 virtual void UpdateInspectorSetting(RenderViewHost* rvh, |
| 132 const std::string& key, | 132 const std::string& key, |
| 133 const std::string& value) OVERRIDE; | 133 const std::string& value) OVERRIDE; |
| 134 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; | 134 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; |
| 135 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; | 135 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; |
| 136 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; | 136 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; |
| 137 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; | 137 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; |
| 138 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; | 138 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; |
| 139 virtual std::string GetDefaultDownloadName() OVERRIDE; | 139 virtual std::string GetDefaultDownloadName() OVERRIDE; |
| 140 | 140 |
| 141 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 141 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 142 virtual int GetCrashSignalFD(const CommandLine& command_line) OVERRIDE; | 142 virtual int GetCrashSignalFD(const CommandLine& command_line) OVERRIDE; |
| 143 #endif | 143 #endif |
| 144 #if defined(OS_WIN) | 144 #if defined(OS_WIN) |
| 145 virtual const wchar_t* GetResourceDllName() OVERRIDE; | 145 virtual const wchar_t* GetResourceDllName() OVERRIDE; |
| 146 #endif | 146 #endif |
| 147 #if defined(USE_NSS) | 147 #if defined(USE_NSS) |
| 148 virtual | 148 virtual |
| 149 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( | 149 crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( |
| 150 const GURL& url) OVERRIDE; | 150 const GURL& url) OVERRIDE; |
| 151 #endif | 151 #endif |
| 152 }; | 152 }; |
| 153 | 153 |
| 154 } // namespace chrome | 154 } // namespace chrome |
| 155 | 155 |
| 156 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 156 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |