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

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

Issue 1033913003: Touch Events capability negotiation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: change setter to public and add license header Created 5 years, 6 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 | « remoting/host/input_injector_chromeos.cc ('k') | remoting/host/input_injector_win.cc » ('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 (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 "remoting/host/input_injector.h" 5 #include "remoting/host/input_injector.h"
6 6
7 #include <ApplicationServices/ApplicationServices.h> 7 #include <ApplicationServices/ApplicationServices.h>
8 #include <Carbon/Carbon.h> 8 #include <Carbon/Carbon.h>
9 #include <algorithm> 9 #include <algorithm>
10 10
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 return; 333 return;
334 } 334 }
335 335
336 clipboard_.reset(); 336 clipboard_.reset();
337 } 337 }
338 338
339 InputInjectorMac::Core::~Core() {} 339 InputInjectorMac::Core::~Core() {}
340 340
341 } // namespace 341 } // namespace
342 342
343 // static
343 scoped_ptr<InputInjector> InputInjector::Create( 344 scoped_ptr<InputInjector> InputInjector::Create(
344 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, 345 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
345 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) { 346 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) {
346 return make_scoped_ptr(new InputInjectorMac(main_task_runner)); 347 return make_scoped_ptr(new InputInjectorMac(main_task_runner));
347 } 348 }
348 349
350 // static
351 bool InputInjector::SupportsTouchEvents() {
352 return false;
353 }
354
349 } // namespace remoting 355 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/input_injector_chromeos.cc ('k') | remoting/host/input_injector_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698