| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |