| 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 ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ | 6 #define ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 const GURL& url, content::ResourceContext* context) OVERRIDE; | 158 const GURL& url, content::ResourceContext* context) OVERRIDE; |
| 159 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 159 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
| 160 virtual content::SpeechRecognitionManagerDelegate* | 160 virtual content::SpeechRecognitionManagerDelegate* |
| 161 GetSpeechRecognitionManagerDelegate() OVERRIDE; | 161 GetSpeechRecognitionManagerDelegate() OVERRIDE; |
| 162 virtual ui::Clipboard* GetClipboard() OVERRIDE; | 162 virtual ui::Clipboard* GetClipboard() OVERRIDE; |
| 163 virtual net::NetLog* GetNetLog() OVERRIDE; | 163 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 164 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 164 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 165 virtual bool IsFastShutdownPossible() OVERRIDE; | 165 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 166 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 166 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
| 167 const GURL& url, | 167 const GURL& url, |
| 168 WebPreferences* prefs) OVERRIDE; | 168 webkit_glue::WebPreferences* prefs) OVERRIDE; |
| 169 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, | 169 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, |
| 170 const std::string& key, | 170 const std::string& key, |
| 171 const std::string& value) OVERRIDE; | 171 const std::string& value) OVERRIDE; |
| 172 virtual void ClearInspectorSettings(content::RenderViewHost* rvh) OVERRIDE; | 172 virtual void ClearInspectorSettings(content::RenderViewHost* rvh) OVERRIDE; |
| 173 virtual void BrowserURLHandlerCreated( | 173 virtual void BrowserURLHandlerCreated( |
| 174 content::BrowserURLHandler* handler) OVERRIDE; | 174 content::BrowserURLHandler* handler) OVERRIDE; |
| 175 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; | 175 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; |
| 176 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; | 176 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; |
| 177 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; | 177 virtual FilePath GetDefaultDownloadDirectory() OVERRIDE; |
| 178 virtual std::string GetDefaultDownloadName() OVERRIDE; | 178 virtual std::string GetDefaultDownloadName() OVERRIDE; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 201 | 201 |
| 202 ShellBrowserMainParts* shell_browser_main_parts_; | 202 ShellBrowserMainParts* shell_browser_main_parts_; |
| 203 | 203 |
| 204 DISALLOW_COPY_AND_ASSIGN(ShellContentBrowserClient); | 204 DISALLOW_COPY_AND_ASSIGN(ShellContentBrowserClient); |
| 205 }; | 205 }; |
| 206 | 206 |
| 207 } // namespace shell | 207 } // namespace shell |
| 208 } // namespace ash | 208 } // namespace ash |
| 209 | 209 |
| 210 #endif // ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ | 210 #endif // ASH_SHELL_CONTENT_CLIENT_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |