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

Side by Side Diff: device/vibration/vibration_manager_impl_default.cc

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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
« no previous file with comments | « device/vibration/android/BUILD.gn ('k') | extensions/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "device/vibration/vibration_manager_impl.h" 5 #include "device/vibration/vibration_manager_impl.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "third_party/mojo/src/mojo/public/cpp/bindings/strong_binding.h" 8 #include "mojo/public/cpp/bindings/strong_binding.h"
9 9
10 namespace device { 10 namespace device {
11 11
12 namespace { 12 namespace {
13 13
14 class VibrationManagerEmptyImpl : public VibrationManager { 14 class VibrationManagerEmptyImpl : public VibrationManager {
15 public: 15 public:
16 void Vibrate(int64 milliseconds) override {} 16 void Vibrate(int64 milliseconds) override {}
17 void Cancel() override {} 17 void Cancel() override {}
18 18
(...skipping 11 matching lines...) Expand all
30 30
31 } // namespace 31 } // namespace
32 32
33 // static 33 // static
34 void VibrationManagerImpl::Create( 34 void VibrationManagerImpl::Create(
35 mojo::InterfaceRequest<VibrationManager> request) { 35 mojo::InterfaceRequest<VibrationManager> request) {
36 new VibrationManagerEmptyImpl(request.Pass()); 36 new VibrationManagerEmptyImpl(request.Pass());
37 } 37 }
38 38
39 } // namespace device 39 } // namespace device
OLDNEW
« no previous file with comments | « device/vibration/android/BUILD.gn ('k') | extensions/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698