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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 bool user_gesture, | 252 bool user_gesture, |
253 bool opener_suppressed, | 253 bool opener_suppressed, |
254 ResourceContext* context, | 254 ResourceContext* context, |
255 int render_process_id, | 255 int render_process_id, |
256 int opener_id, | 256 int opener_id, |
257 bool* no_javascript_access) { | 257 bool* no_javascript_access) { |
258 *no_javascript_access = false; | 258 *no_javascript_access = false; |
259 return true; | 259 return true; |
260 } | 260 } |
261 | 261 |
262 std::string ContentBrowserClient::GetWorkerProcessTitle( | |
263 const GURL& url, ResourceContext* context) { | |
264 return std::string(); | |
265 } | |
266 | |
267 SpeechRecognitionManagerDelegate* | 262 SpeechRecognitionManagerDelegate* |
268 ContentBrowserClient::GetSpeechRecognitionManagerDelegate() { | 263 ContentBrowserClient::GetSpeechRecognitionManagerDelegate() { |
269 return NULL; | 264 return NULL; |
270 } | 265 } |
271 | 266 |
272 net::NetLog* ContentBrowserClient::GetNetLog() { | 267 net::NetLog* ContentBrowserClient::GetNetLog() { |
273 return NULL; | 268 return NULL; |
274 } | 269 } |
275 | 270 |
276 AccessTokenStore* ContentBrowserClient::CreateAccessTokenStore() { | 271 AccessTokenStore* ContentBrowserClient::CreateAccessTokenStore() { |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 | 339 |
345 #if defined(VIDEO_HOLE) | 340 #if defined(VIDEO_HOLE) |
346 ExternalVideoSurfaceContainer* | 341 ExternalVideoSurfaceContainer* |
347 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 342 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
348 WebContents* web_contents) { | 343 WebContents* web_contents) { |
349 return NULL; | 344 return NULL; |
350 } | 345 } |
351 #endif | 346 #endif |
352 | 347 |
353 } // namespace content | 348 } // namespace content |
OLD | NEW |