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

Side by Side Diff: remoting/host/input_injector_android.cc

Issue 1883153002: Fixes clank down-stream compilation failures of input_injector_android.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "base/logging.h"
5 #include "base/memory/ptr_util.h" 6 #include "base/memory/ptr_util.h"
6 #include "remoting/host/input_injector.h" 7 #include "remoting/host/input_injector.h"
7 8
8 namespace remoting { 9 namespace remoting {
9 10
10 namespace { 11 namespace {
11 12
12 class InputInjectorAndroid : public InputInjector { 13 class InputInjectorAndroid : public InputInjector {
13 public: 14 public:
14 InputInjectorAndroid() {} 15 InputInjectorAndroid() {}
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) { 49 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) {
49 return base::WrapUnique(new InputInjectorAndroid()); 50 return base::WrapUnique(new InputInjectorAndroid());
50 } 51 }
51 52
52 // static 53 // static
53 bool InputInjector::SupportsTouchEvents() { 54 bool InputInjector::SupportsTouchEvents() {
54 return false; 55 return false;
55 } 56 }
56 57
57 } // namespace remoting 58 } // namespace remoting
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698