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 |
298 DevToolsManagerDelegate* ContentBrowserClient::GetDevToolsManagerDelegate() { | 302 DevToolsManagerDelegate* ContentBrowserClient::GetDevToolsManagerDelegate() { |
299 return NULL; | 303 return NULL; |
300 } | 304 } |
301 | 305 |
302 bool ContentBrowserClient::IsPluginAllowedToCallRequestOSFileHandle( | 306 bool ContentBrowserClient::IsPluginAllowedToCallRequestOSFileHandle( |
303 BrowserContext* browser_context, | 307 BrowserContext* browser_context, |
304 const GURL& url) { | 308 const GURL& url) { |
305 return false; | 309 return false; |
306 } | 310 } |
307 | 311 |
(...skipping 23 matching lines...) Expand all Loading... |
331 | 335 |
332 #if defined(VIDEO_HOLE) | 336 #if defined(VIDEO_HOLE) |
333 ExternalVideoSurfaceContainer* | 337 ExternalVideoSurfaceContainer* |
334 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 338 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
335 WebContents* web_contents) { | 339 WebContents* web_contents) { |
336 return NULL; | 340 return NULL; |
337 } | 341 } |
338 #endif | 342 #endif |
339 | 343 |
340 } // namespace content | 344 } // namespace content |
OLD | NEW |