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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 bool opener_suppressed, | 223 bool opener_suppressed, |
224 content::ResourceContext* context, | 224 content::ResourceContext* context, |
225 int render_process_id, | 225 int render_process_id, |
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( |
| 234 content::BrowserContext* browser_context) OVERRIDE; |
233 virtual net::NetLog* GetNetLog() OVERRIDE; | 235 virtual net::NetLog* GetNetLog() OVERRIDE; |
234 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 236 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
235 virtual bool IsFastShutdownPossible() OVERRIDE; | 237 virtual bool IsFastShutdownPossible() 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( |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 prerender::PrerenderTracker* prerender_tracker_; | 317 prerender::PrerenderTracker* prerender_tracker_; |
316 | 318 |
317 friend class DisableWebRtcEncryptionFlagTest; | 319 friend class DisableWebRtcEncryptionFlagTest; |
318 | 320 |
319 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 321 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
320 }; | 322 }; |
321 | 323 |
322 } // namespace chrome | 324 } // namespace chrome |
323 | 325 |
324 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 326 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |