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

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

Issue 422503004: Adding ability to stream windows and inject events to them (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: uploaded to remove lint errors Created 6 years, 4 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 "remoting/host/input_injector.h" 5 #include "remoting/host/input_injector.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 322
323 } // namespace 323 } // namespace
324 324
325 scoped_ptr<InputInjector> InputInjector::Create( 325 scoped_ptr<InputInjector> InputInjector::Create(
326 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, 326 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
327 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) { 327 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) {
328 return scoped_ptr<InputInjector>( 328 return scoped_ptr<InputInjector>(
329 new InputInjectorWin(main_task_runner, ui_task_runner)); 329 new InputInjectorWin(main_task_runner, ui_task_runner));
330 } 330 }
331 331
332 scoped_ptr<InputInjector> Create(
333 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
334 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
335 webrtc::WindowId windowId,
336 bool enable_window_capture) {
337 }
338
332 } // namespace remoting 339 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698