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/host_window_proxy.h

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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/host_status_sender_unittest.cc ('k') | remoting/host/host_window_proxy.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef REMOTING_HOST_HOST_WINDOW_PROXY_H_ 5 #ifndef REMOTING_HOST_HOST_WINDOW_PROXY_H_
6 #define REMOTING_HOST_HOST_WINDOW_PROXY_H_ 6 #define REMOTING_HOST_HOST_WINDOW_PROXY_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 11 matching lines...) Expand all
22 public: 22 public:
23 HostWindowProxy( 23 HostWindowProxy(
24 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner, 24 scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner,
25 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner, 25 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
26 scoped_ptr<HostWindow> host_window); 26 scoped_ptr<HostWindow> host_window);
27 virtual ~HostWindowProxy(); 27 virtual ~HostWindowProxy();
28 28
29 // HostWindow overrides. 29 // HostWindow overrides.
30 virtual void Start( 30 virtual void Start(
31 const base::WeakPtr<ClientSessionControl>& client_session_control) 31 const base::WeakPtr<ClientSessionControl>& client_session_control)
32 OVERRIDE; 32 override;
33 33
34 private: 34 private:
35 // All thread switching logic is implemented in the ref-counted |Core| class. 35 // All thread switching logic is implemented in the ref-counted |Core| class.
36 class Core; 36 class Core;
37 scoped_refptr<Core> core_; 37 scoped_refptr<Core> core_;
38 38
39 DISALLOW_COPY_AND_ASSIGN(HostWindowProxy); 39 DISALLOW_COPY_AND_ASSIGN(HostWindowProxy);
40 }; 40 };
41 41
42 } // namespace remoting 42 } // namespace remoting
43 43
44 #endif // REMOTING_HOST_HOST_WINDOW_PROXY_H_ 44 #endif // REMOTING_HOST_HOST_WINDOW_PROXY_H_
OLDNEW
« no previous file with comments | « remoting/host/host_status_sender_unittest.cc ('k') | remoting/host/host_window_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698