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

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

Issue 1547473005: Switch to standard integer types in remoting/host/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 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 "remoting/host/single_window_input_injector.h" 5 #include "remoting/host/single_window_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 9
10 #include "base/mac/foundation_util.h" 10 #include "base/mac/foundation_util.h"
11 #include "base/mac/scoped_cftyperef.h" 11 #include "base/mac/scoped_cftyperef.h"
12 #include "base/macros.h"
12 #include "remoting/proto/event.pb.h" 13 #include "remoting/proto/event.pb.h"
13 #include "third_party/webrtc/modules/desktop_capture/mac/desktop_configuration.h " 14 #include "third_party/webrtc/modules/desktop_capture/mac/desktop_configuration.h "
14 15
15 namespace remoting { 16 namespace remoting {
16 17
17 using protocol::ClipboardEvent; 18 using protocol::ClipboardEvent;
18 using protocol::KeyEvent; 19 using protocol::KeyEvent;
19 using protocol::TextEvent; 20 using protocol::TextEvent;
20 using protocol::MouseEvent; 21 using protocol::MouseEvent;
21 using protocol::TouchEvent; 22 using protocol::TouchEvent;
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 163
163 scoped_ptr<InputInjector> SingleWindowInputInjector::CreateForWindow( 164 scoped_ptr<InputInjector> SingleWindowInputInjector::CreateForWindow(
164 webrtc::WindowId window_id, 165 webrtc::WindowId window_id,
165 scoped_ptr<InputInjector> input_injector) { 166 scoped_ptr<InputInjector> input_injector) {
166 scoped_ptr<SingleWindowInputInjectorMac> injector( 167 scoped_ptr<SingleWindowInputInjectorMac> injector(
167 new SingleWindowInputInjectorMac(window_id, input_injector.Pass())); 168 new SingleWindowInputInjectorMac(window_id, input_injector.Pass()));
168 return injector.Pass(); 169 return injector.Pass();
169 } 170 }
170 171
171 } // namespace remoting 172 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/single_window_desktop_environment.cc ('k') | remoting/host/token_validator_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698