Chromium Code Reviews| 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 #include "content/public/browser/content_browser_client.h" | 5 #include "content/public/browser/content_browser_client.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "ui/gfx/image/image_skia.h" | 8 #include "ui/gfx/image/image_skia.h" |
| 9 #include "url/gurl.h" | 9 #include "url/gurl.h" |
| 10 | 10 |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 233 std::string ContentBrowserClient::GetWorkerProcessTitle( | 233 std::string ContentBrowserClient::GetWorkerProcessTitle( |
| 234 const GURL& url, ResourceContext* context) { | 234 const GURL& url, ResourceContext* context) { |
| 235 return std::string(); | 235 return std::string(); |
| 236 } | 236 } |
| 237 | 237 |
| 238 SpeechRecognitionManagerDelegate* | 238 SpeechRecognitionManagerDelegate* |
| 239 ContentBrowserClient::GetSpeechRecognitionManagerDelegate() { | 239 ContentBrowserClient::GetSpeechRecognitionManagerDelegate() { |
| 240 return NULL; | 240 return NULL; |
| 241 } | 241 } |
| 242 | 242 |
| 243 PushMessagingService* ContentBrowserClient::CreatePushMessagingService( | |
| 244 BrowserContext* browser_context) { | |
|
jochen (gone - plz use gerrit)
2014/06/06 07:05:38
why not add a push messaging service getting to br
| |
| 245 return NULL; | |
| 246 } | |
| 247 | |
| 243 net::NetLog* ContentBrowserClient::GetNetLog() { | 248 net::NetLog* ContentBrowserClient::GetNetLog() { |
| 244 return NULL; | 249 return NULL; |
| 245 } | 250 } |
| 246 | 251 |
| 247 AccessTokenStore* ContentBrowserClient::CreateAccessTokenStore() { | 252 AccessTokenStore* ContentBrowserClient::CreateAccessTokenStore() { |
| 248 return NULL; | 253 return NULL; |
| 249 } | 254 } |
| 250 | 255 |
| 251 bool ContentBrowserClient::IsFastShutdownPossible() { | 256 bool ContentBrowserClient::IsFastShutdownPossible() { |
| 252 return true; | 257 return true; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 313 | 318 |
| 314 #if defined(VIDEO_HOLE) | 319 #if defined(VIDEO_HOLE) |
| 315 ExternalVideoSurfaceContainer* | 320 ExternalVideoSurfaceContainer* |
| 316 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 321 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
| 317 WebContents* web_contents) { | 322 WebContents* web_contents) { |
| 318 return NULL; | 323 return NULL; |
| 319 } | 324 } |
| 320 #endif | 325 #endif |
| 321 | 326 |
| 322 } // namespace content | 327 } // namespace content |
| OLD | NEW |