| 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 | 296 |
| 297 ui::SelectFilePolicy* ContentBrowserClient::CreateSelectFilePolicy( | 297 ui::SelectFilePolicy* ContentBrowserClient::CreateSelectFilePolicy( |
| 298 WebContents* web_contents) { | 298 WebContents* web_contents) { |
| 299 return NULL; | 299 return NULL; |
| 300 } | 300 } |
| 301 | 301 |
| 302 LocationProvider* ContentBrowserClient::OverrideSystemLocationProvider() { | 302 LocationProvider* ContentBrowserClient::OverrideSystemLocationProvider() { |
| 303 return NULL; | 303 return NULL; |
| 304 } | 304 } |
| 305 | 305 |
| 306 VibrationProvider* ContentBrowserClient::OverrideVibrationProvider() { | |
| 307 return NULL; | |
| 308 } | |
| 309 | |
| 310 DevToolsManagerDelegate* ContentBrowserClient::GetDevToolsManagerDelegate() { | 306 DevToolsManagerDelegate* ContentBrowserClient::GetDevToolsManagerDelegate() { |
| 311 return NULL; | 307 return NULL; |
| 312 } | 308 } |
| 313 | 309 |
| 314 bool ContentBrowserClient::IsPluginAllowedToCallRequestOSFileHandle( | 310 bool ContentBrowserClient::IsPluginAllowedToCallRequestOSFileHandle( |
| 315 BrowserContext* browser_context, | 311 BrowserContext* browser_context, |
| 316 const GURL& url) { | 312 const GURL& url) { |
| 317 return false; | 313 return false; |
| 318 } | 314 } |
| 319 | 315 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 343 #endif | 339 #endif |
| 344 | 340 |
| 345 bool ContentBrowserClient::CheckMediaAccessPermission( | 341 bool ContentBrowserClient::CheckMediaAccessPermission( |
| 346 BrowserContext* browser_context, | 342 BrowserContext* browser_context, |
| 347 const GURL& security_origin, | 343 const GURL& security_origin, |
| 348 MediaStreamType type) { | 344 MediaStreamType type) { |
| 349 return false; | 345 return false; |
| 350 } | 346 } |
| 351 | 347 |
| 352 } // namespace content | 348 } // namespace content |
| OLD | NEW |