| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 | 288 |
| 289 ui::SelectFilePolicy* ContentBrowserClient::CreateSelectFilePolicy( | 289 ui::SelectFilePolicy* ContentBrowserClient::CreateSelectFilePolicy( |
| 290 WebContents* web_contents) { | 290 WebContents* web_contents) { |
| 291 return NULL; | 291 return NULL; |
| 292 } | 292 } |
| 293 | 293 |
| 294 LocationProvider* ContentBrowserClient::OverrideSystemLocationProvider() { | 294 LocationProvider* ContentBrowserClient::OverrideSystemLocationProvider() { |
| 295 return NULL; | 295 return NULL; |
| 296 } | 296 } |
| 297 | 297 |
| 298 VibrationProvider* ContentBrowserClient::OverrideVibrationProvider() { | |
| 299 return NULL; | |
| 300 } | |
| 301 | |
| 302 DevToolsManagerDelegate* ContentBrowserClient::GetDevToolsManagerDelegate() { | 298 DevToolsManagerDelegate* ContentBrowserClient::GetDevToolsManagerDelegate() { |
| 303 return NULL; | 299 return NULL; |
| 304 } | 300 } |
| 305 | 301 |
| 306 bool ContentBrowserClient::IsPluginAllowedToCallRequestOSFileHandle( | 302 bool ContentBrowserClient::IsPluginAllowedToCallRequestOSFileHandle( |
| 307 BrowserContext* browser_context, | 303 BrowserContext* browser_context, |
| 308 const GURL& url) { | 304 const GURL& url) { |
| 309 return false; | 305 return false; |
| 310 } | 306 } |
| 311 | 307 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 335 | 331 |
| 336 #if defined(VIDEO_HOLE) | 332 #if defined(VIDEO_HOLE) |
| 337 ExternalVideoSurfaceContainer* | 333 ExternalVideoSurfaceContainer* |
| 338 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 334 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
| 339 WebContents* web_contents) { | 335 WebContents* web_contents) { |
| 340 return NULL; | 336 return NULL; |
| 341 } | 337 } |
| 342 #endif | 338 #endif |
| 343 | 339 |
| 344 } // namespace content | 340 } // namespace content |
| OLD | NEW |