| 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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 DevToolsManagerDelegate* ContentBrowserClient::GetDevToolsManagerDelegate() { | 317 DevToolsManagerDelegate* ContentBrowserClient::GetDevToolsManagerDelegate() { |
| 318 return NULL; | 318 return NULL; |
| 319 } | 319 } |
| 320 | 320 |
| 321 bool ContentBrowserClient::IsPluginAllowedToCallRequestOSFileHandle( | 321 bool ContentBrowserClient::IsPluginAllowedToCallRequestOSFileHandle( |
| 322 BrowserContext* browser_context, | 322 BrowserContext* browser_context, |
| 323 const GURL& url) { | 323 const GURL& url) { |
| 324 return false; | 324 return false; |
| 325 } | 325 } |
| 326 | 326 |
| 327 bool ContentBrowserClient::IsPluginAllowedToUseDevChannelAPIs() { | 327 bool ContentBrowserClient::IsPluginAllowedToUseDevChannelAPIs( |
| 328 BrowserContext* browser_context, |
| 329 const GURL& url) { |
| 328 return false; | 330 return false; |
| 329 } | 331 } |
| 330 | 332 |
| 331 net::CookieStore* ContentBrowserClient::OverrideCookieStoreForRenderProcess( | 333 net::CookieStore* ContentBrowserClient::OverrideCookieStoreForRenderProcess( |
| 332 int render_process_id) { | 334 int render_process_id) { |
| 333 return NULL; | 335 return NULL; |
| 334 } | 336 } |
| 335 | 337 |
| 336 #if defined(OS_WIN) | 338 #if defined(OS_WIN) |
| 337 const wchar_t* ContentBrowserClient::GetResourceDllName() { | 339 const wchar_t* ContentBrowserClient::GetResourceDllName() { |
| 338 return NULL; | 340 return NULL; |
| 339 } | 341 } |
| 340 #endif | 342 #endif |
| 341 | 343 |
| 342 #if defined(VIDEO_HOLE) | 344 #if defined(VIDEO_HOLE) |
| 343 ExternalVideoSurfaceContainer* | 345 ExternalVideoSurfaceContainer* |
| 344 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 346 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
| 345 WebContents* web_contents) { | 347 WebContents* web_contents) { |
| 346 return NULL; | 348 return NULL; |
| 347 } | 349 } |
| 348 #endif | 350 #endif |
| 349 | 351 |
| 350 } // namespace content | 352 } // namespace content |
| OLD | NEW |