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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 int render_process_id, | 224 int render_process_id, |
225 bool is_guest, | 225 bool is_guest, |
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 content::PushMessagingService* CreatePushMessagingService( | 233 virtual content::PushMessagingService* CreatePushMessagingService( |
234 content::BrowserContext* browser_context) OVERRIDE; | 234 content::RenderProcessHostImpl* rphi) OVERRIDE; |
235 virtual net::NetLog* GetNetLog() OVERRIDE; | 235 virtual net::NetLog* GetNetLog() OVERRIDE; |
236 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 236 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
237 virtual bool IsFastShutdownPossible() OVERRIDE; | 237 virtual bool IsFastShutdownPossible() OVERRIDE; |
238 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, | 238 virtual void OverrideWebkitPrefs(content::RenderViewHost* rvh, |
239 const GURL& url, | 239 const GURL& url, |
240 WebPreferences* prefs) OVERRIDE; | 240 WebPreferences* prefs) OVERRIDE; |
241 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, | 241 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, |
242 const std::string& key, | 242 const std::string& key, |
243 const std::string& value) OVERRIDE; | 243 const std::string& value) OVERRIDE; |
244 virtual void BrowserURLHandlerCreated( | 244 virtual void BrowserURLHandlerCreated( |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 permissions_policy_delegate_; | 306 permissions_policy_delegate_; |
307 | 307 |
308 friend class DisableWebRtcEncryptionFlagTest; | 308 friend class DisableWebRtcEncryptionFlagTest; |
309 | 309 |
310 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 310 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
311 }; | 311 }; |
312 | 312 |
313 } // namespace chrome | 313 } // namespace chrome |
314 | 314 |
315 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 315 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |