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 "content/public/browser/client_certificate_delegate.h" | 8 #include "content/public/browser/client_certificate_delegate.h" |
9 #include "ui/gfx/image/image_skia.h" | 9 #include "ui/gfx/image/image_skia.h" |
10 #include "url/gurl.h" | 10 #include "url/gurl.h" |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 const GURL& url) { | 320 const GURL& url) { |
321 return false; | 321 return false; |
322 } | 322 } |
323 | 323 |
324 bool ContentBrowserClient::IsPluginAllowedToUseDevChannelAPIs( | 324 bool ContentBrowserClient::IsPluginAllowedToUseDevChannelAPIs( |
325 BrowserContext* browser_context, | 325 BrowserContext* browser_context, |
326 const GURL& url) { | 326 const GURL& url) { |
327 return false; | 327 return false; |
328 } | 328 } |
329 | 329 |
330 net::CookieStore* ContentBrowserClient::OverrideCookieStoreForRenderProcess( | |
331 int render_process_id) { | |
332 return nullptr; | |
333 } | |
334 | |
335 bool ContentBrowserClient::CheckMediaAccessPermission( | 330 bool ContentBrowserClient::CheckMediaAccessPermission( |
336 BrowserContext* browser_context, | 331 BrowserContext* browser_context, |
337 const GURL& security_origin, | 332 const GURL& security_origin, |
338 MediaStreamType type) { | 333 MediaStreamType type) { |
339 return false; | 334 return false; |
340 } | 335 } |
341 | 336 |
342 PresentationServiceDelegate* | 337 PresentationServiceDelegate* |
343 ContentBrowserClient::GetPresentationServiceDelegate( | 338 ContentBrowserClient::GetPresentationServiceDelegate( |
344 WebContents* web_contents) { | 339 WebContents* web_contents) { |
(...skipping 15 matching lines...) Expand all Loading... |
360 | 355 |
361 #if defined(VIDEO_HOLE) | 356 #if defined(VIDEO_HOLE) |
362 ExternalVideoSurfaceContainer* | 357 ExternalVideoSurfaceContainer* |
363 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 358 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
364 WebContents* web_contents) { | 359 WebContents* web_contents) { |
365 return nullptr; | 360 return nullptr; |
366 } | 361 } |
367 #endif | 362 #endif |
368 | 363 |
369 } // namespace content | 364 } // namespace content |
OLD | NEW |