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

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

Issue 930403002: Remove remoting::Clipboard::Stop(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/clipboard_x11.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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 320
321 clipboard_->Start(client_clipboard.Pass()); 321 clipboard_->Start(client_clipboard.Pass());
322 } 322 }
323 323
324 void InputInjectorMac::Core::Stop() { 324 void InputInjectorMac::Core::Stop() {
325 if (!task_runner_->BelongsToCurrentThread()) { 325 if (!task_runner_->BelongsToCurrentThread()) {
326 task_runner_->PostTask(FROM_HERE, base::Bind(&Core::Stop, this)); 326 task_runner_->PostTask(FROM_HERE, base::Bind(&Core::Stop, this));
327 return; 327 return;
328 } 328 }
329 329
330 clipboard_->Stop(); 330 clipboard_.reset();
331 } 331 }
332 332
333 InputInjectorMac::Core::~Core() {} 333 InputInjectorMac::Core::~Core() {}
334 334
335 } // namespace 335 } // namespace
336 336
337 scoped_ptr<InputInjector> InputInjector::Create( 337 scoped_ptr<InputInjector> InputInjector::Create(
338 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, 338 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
339 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) { 339 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) {
340 return make_scoped_ptr(new InputInjectorMac(main_task_runner)); 340 return make_scoped_ptr(new InputInjectorMac(main_task_runner));
341 } 341 }
342 342
343 } // namespace remoting 343 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/clipboard_x11.cc ('k') | remoting/host/input_injector_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698