Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(325)

Side by Side Diff: content/public/browser/content_browser_client.cc

Issue 826613003: Revert of Vibration API : migrate to device/vibration using mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | content/public/browser/vibration_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698