| 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_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 virtual std::string GetWorkerProcessTitle( | 126 virtual std::string GetWorkerProcessTitle( |
| 127 const GURL& url, const content::ResourceContext& context) OVERRIDE; | 127 const GURL& url, const content::ResourceContext& context) OVERRIDE; |
| 128 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; | 128 virtual ResourceDispatcherHost* GetResourceDispatcherHost() OVERRIDE; |
| 129 virtual ui::Clipboard* GetClipboard() OVERRIDE; | 129 virtual ui::Clipboard* GetClipboard() OVERRIDE; |
| 130 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; | 130 virtual MHTMLGenerationManager* GetMHTMLGenerationManager() OVERRIDE; |
| 131 virtual DevToolsManager* GetDevToolsManager() OVERRIDE; | 131 virtual DevToolsManager* GetDevToolsManager() OVERRIDE; |
| 132 virtual net::NetLog* GetNetLog() OVERRIDE; | 132 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 133 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE; | 133 virtual speech_input::SpeechInputManager* GetSpeechInputManager() OVERRIDE; |
| 134 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 134 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 135 virtual bool IsFastShutdownPossible() OVERRIDE; | 135 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 136 virtual WebPreferences GetWebkitPrefs( | 136 virtual WebPreferences GetWebkitPrefs(RenderViewHost* rvh) OVERRIDE; |
| 137 content::BrowserContext* browser_context, | |
| 138 bool is_web_ui) OVERRIDE; | |
| 139 virtual void UpdateInspectorSetting(RenderViewHost* rvh, | 137 virtual void UpdateInspectorSetting(RenderViewHost* rvh, |
| 140 const std::string& key, | 138 const std::string& key, |
| 141 const std::string& value) OVERRIDE; | 139 const std::string& value) OVERRIDE; |
| 142 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; | 140 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; |
| 143 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; | 141 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; |
| 144 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; | 142 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; |
| 145 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; | 143 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; |
| 146 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; | 144 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; |
| 147 virtual std::string GetDefaultDownloadName() OVERRIDE; | 145 virtual std::string GetDefaultDownloadName() OVERRIDE; |
| 148 | 146 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 168 const ViewHostMsg_CreateWindow_Params& params) OVERRIDE; | 166 const ViewHostMsg_CreateWindow_Params& params) OVERRIDE; |
| 169 #endif | 167 #endif |
| 170 | 168 |
| 171 private: | 169 private: |
| 172 ShellBrowserMainParts* shell_browser_main_parts_; | 170 ShellBrowserMainParts* shell_browser_main_parts_; |
| 173 }; | 171 }; |
| 174 | 172 |
| 175 } // namespace content | 173 } // namespace content |
| 176 | 174 |
| 177 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 175 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |