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 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 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 int opener_id, | 226 int opener_id, |
227 bool* no_javascript_access) OVERRIDE; | 227 bool* no_javascript_access) OVERRIDE; |
228 virtual std::string GetWorkerProcessTitle( | 228 virtual std::string GetWorkerProcessTitle( |
229 const GURL& url, content::ResourceContext* context) OVERRIDE; | 229 const GURL& url, content::ResourceContext* context) OVERRIDE; |
230 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 230 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
231 virtual content::SpeechRecognitionManagerDelegate* | 231 virtual content::SpeechRecognitionManagerDelegate* |
232 GetSpeechRecognitionManagerDelegate() OVERRIDE; | 232 GetSpeechRecognitionManagerDelegate() OVERRIDE; |
233 virtual net::NetLog* GetNetLog() OVERRIDE; | 233 virtual net::NetLog* GetNetLog() OVERRIDE; |
234 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 234 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
235 virtual bool IsFastShutdownPossible() OVERRIDE; | 235 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 236 virtual bool IsRenderViewHostForBackground(content::RenderViewHost* rvh) |
| 237 OVERRIDE; |
236 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 238 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
237 const GURL& url, | 239 const GURL& url, |
238 WebPreferences* prefs) OVERRIDE; | 240 WebPreferences* prefs) OVERRIDE; |
239 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, | 241 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, |
240 const std::string& key, | 242 const std::string& key, |
241 const std::string& value) OVERRIDE; | 243 const std::string& value) OVERRIDE; |
242 virtual void BrowserURLHandlerCreated( | 244 virtual void BrowserURLHandlerCreated( |
243 content::BrowserURLHandler* handler) OVERRIDE; | 245 content::BrowserURLHandler* handler) OVERRIDE; |
244 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; | 246 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; |
245 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; | 247 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 permissions_policy_delegate_; | 306 permissions_policy_delegate_; |
305 | 307 |
306 friend class DisableWebRtcEncryptionFlagTest; | 308 friend class DisableWebRtcEncryptionFlagTest; |
307 | 309 |
308 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 310 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
309 }; | 311 }; |
310 | 312 |
311 } // namespace chrome | 313 } // namespace chrome |
312 | 314 |
313 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 315 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |