| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 const GURL& url, content::ResourceContext* context) OVERRIDE; | 150 const GURL& url, content::ResourceContext* context) OVERRIDE; |
| 151 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 151 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
| 152 virtual SpeechRecognitionManagerDelegate* | 152 virtual SpeechRecognitionManagerDelegate* |
| 153 GetSpeechRecognitionManagerDelegate() OVERRIDE; | 153 GetSpeechRecognitionManagerDelegate() OVERRIDE; |
| 154 virtual ui::Clipboard* GetClipboard() OVERRIDE; | 154 virtual ui::Clipboard* GetClipboard() OVERRIDE; |
| 155 virtual net::NetLog* GetNetLog() OVERRIDE; | 155 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 156 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 156 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 157 virtual bool IsFastShutdownPossible() OVERRIDE; | 157 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 158 virtual void OverrideWebkitPrefs(RenderViewHost* rvh, | 158 virtual void OverrideWebkitPrefs(RenderViewHost* rvh, |
| 159 const GURL& url, | 159 const GURL& url, |
| 160 WebPreferences* prefs) OVERRIDE; | 160 webkit_glue::WebPreferences* prefs) OVERRIDE; |
| 161 virtual void UpdateInspectorSetting(RenderViewHost* rvh, | 161 virtual void UpdateInspectorSetting(RenderViewHost* rvh, |
| 162 const std::string& key, | 162 const std::string& key, |
| 163 const std::string& value) OVERRIDE; | 163 const std::string& value) OVERRIDE; |
| 164 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; | 164 virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; |
| 165 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; | 165 virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; |
| 166 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; | 166 virtual void ClearCache(RenderViewHost* rvh) OVERRIDE; |
| 167 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; | 167 virtual void ClearCookies(RenderViewHost* rvh) OVERRIDE; |
| 168 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; | 168 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; |
| 169 virtual std::string GetDefaultDownloadName() OVERRIDE; | 169 virtual std::string GetDefaultDownloadName() OVERRIDE; |
| 170 virtual bool AllowSocketAPI(BrowserContext* browser_context, | 170 virtual bool AllowSocketAPI(BrowserContext* browser_context, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 189 private: | 189 private: |
| 190 scoped_ptr<ShellResourceDispatcherHostDelegate> | 190 scoped_ptr<ShellResourceDispatcherHostDelegate> |
| 191 resource_dispatcher_host_delegate_; | 191 resource_dispatcher_host_delegate_; |
| 192 | 192 |
| 193 ShellBrowserMainParts* shell_browser_main_parts_; | 193 ShellBrowserMainParts* shell_browser_main_parts_; |
| 194 }; | 194 }; |
| 195 | 195 |
| 196 } // namespace content | 196 } // namespace content |
| 197 | 197 |
| 198 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 198 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |