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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 | 306 |
307 ui::SelectFilePolicy* ContentBrowserClient::CreateSelectFilePolicy( | 307 ui::SelectFilePolicy* ContentBrowserClient::CreateSelectFilePolicy( |
308 WebContents* web_contents) { | 308 WebContents* web_contents) { |
309 return NULL; | 309 return NULL; |
310 } | 310 } |
311 | 311 |
312 LocationProvider* ContentBrowserClient::OverrideSystemLocationProvider() { | 312 LocationProvider* ContentBrowserClient::OverrideSystemLocationProvider() { |
313 return NULL; | 313 return NULL; |
314 } | 314 } |
315 | 315 |
316 VibrationProvider* ContentBrowserClient::OverrideVibrationProvider() { | |
317 return NULL; | |
318 } | |
319 | |
320 DevToolsManagerDelegate* ContentBrowserClient::GetDevToolsManagerDelegate() { | 316 DevToolsManagerDelegate* ContentBrowserClient::GetDevToolsManagerDelegate() { |
321 return NULL; | 317 return NULL; |
322 } | 318 } |
323 | 319 |
324 bool ContentBrowserClient::IsPluginAllowedToCallRequestOSFileHandle( | 320 bool ContentBrowserClient::IsPluginAllowedToCallRequestOSFileHandle( |
325 BrowserContext* browser_context, | 321 BrowserContext* browser_context, |
326 const GURL& url) { | 322 const GURL& url) { |
327 return false; | 323 return false; |
328 } | 324 } |
329 | 325 |
(...skipping 23 matching lines...) Expand all Loading... |
353 #endif | 349 #endif |
354 | 350 |
355 bool ContentBrowserClient::CheckMediaAccessPermission( | 351 bool ContentBrowserClient::CheckMediaAccessPermission( |
356 BrowserContext* browser_context, | 352 BrowserContext* browser_context, |
357 const GURL& security_origin, | 353 const GURL& security_origin, |
358 MediaStreamType type) { | 354 MediaStreamType type) { |
359 return false; | 355 return false; |
360 } | 356 } |
361 | 357 |
362 } // namespace content | 358 } // namespace content |
OLD | NEW |