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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 } | 276 } |
277 | 277 |
278 LocationProvider* ContentBrowserClient::OverrideSystemLocationProvider() { | 278 LocationProvider* ContentBrowserClient::OverrideSystemLocationProvider() { |
279 return NULL; | 279 return NULL; |
280 } | 280 } |
281 | 281 |
282 VibrationProvider* ContentBrowserClient::OverrideVibrationProvider() { | 282 VibrationProvider* ContentBrowserClient::OverrideVibrationProvider() { |
283 return NULL; | 283 return NULL; |
284 } | 284 } |
285 | 285 |
| 286 DevToolsManagerDelegate* ContentBrowserClient::GetDevToolsManagerDelegate() { |
| 287 return NULL; |
| 288 } |
| 289 |
286 #if defined(OS_WIN) | 290 #if defined(OS_WIN) |
287 const wchar_t* ContentBrowserClient::GetResourceDllName() { | 291 const wchar_t* ContentBrowserClient::GetResourceDllName() { |
288 return NULL; | 292 return NULL; |
289 } | 293 } |
290 #endif | 294 #endif |
291 | 295 |
292 bool ContentBrowserClient::IsPluginAllowedToCallRequestOSFileHandle( | 296 bool ContentBrowserClient::IsPluginAllowedToCallRequestOSFileHandle( |
293 content::BrowserContext* browser_context, | 297 content::BrowserContext* browser_context, |
294 const GURL& url) { | 298 const GURL& url) { |
295 return false; | 299 return false; |
(...skipping 10 matching lines...) Expand all Loading... |
306 | 310 |
307 #if defined(VIDEO_HOLE) | 311 #if defined(VIDEO_HOLE) |
308 ExternalVideoSurfaceContainer* | 312 ExternalVideoSurfaceContainer* |
309 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 313 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
310 WebContents* web_contents) { | 314 WebContents* web_contents) { |
311 return NULL; | 315 return NULL; |
312 } | 316 } |
313 #endif | 317 #endif |
314 | 318 |
315 } // namespace content | 319 } // namespace content |
OLD | NEW |