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

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

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/disconnect_window_mac.mm ('k') | remoting/host/dns_blackhole_checker.h » ('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 <windows.h> 5 #include <windows.h>
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/process/memory.h" 9 #include "base/process/memory.h"
10 #include "base/strings/string_util.h" 10 #include "base/strings/string_util.h"
(...skipping 22 matching lines...) Expand all
33 const int kWindowTextMargin = 8; 33 const int kWindowTextMargin = 8;
34 34
35 class DisconnectWindowWin : public HostWindow { 35 class DisconnectWindowWin : public HostWindow {
36 public: 36 public:
37 DisconnectWindowWin(); 37 DisconnectWindowWin();
38 virtual ~DisconnectWindowWin(); 38 virtual ~DisconnectWindowWin();
39 39
40 // HostWindow overrides. 40 // HostWindow overrides.
41 virtual void Start( 41 virtual void Start(
42 const base::WeakPtr<ClientSessionControl>& client_session_control) 42 const base::WeakPtr<ClientSessionControl>& client_session_control)
43 OVERRIDE; 43 override;
44 44
45 protected: 45 protected:
46 static INT_PTR CALLBACK DialogProc(HWND hwnd, UINT message, WPARAM wparam, 46 static INT_PTR CALLBACK DialogProc(HWND hwnd, UINT message, WPARAM wparam,
47 LPARAM lparam); 47 LPARAM lparam);
48 48
49 BOOL OnDialogMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); 49 BOOL OnDialogMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
50 50
51 // Creates the dialog window and registers the disconnect hot key. 51 // Creates the dialog window and registers the disconnect hot key.
52 bool BeginDialog(); 52 bool BeginDialog();
53 53
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 } 391 }
392 392
393 } // namespace 393 } // namespace
394 394
395 // static 395 // static
396 scoped_ptr<HostWindow> HostWindow::CreateDisconnectWindow() { 396 scoped_ptr<HostWindow> HostWindow::CreateDisconnectWindow() {
397 return make_scoped_ptr(new DisconnectWindowWin()); 397 return make_scoped_ptr(new DisconnectWindowWin());
398 } 398 }
399 399
400 } // namespace remoting 400 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/disconnect_window_mac.mm ('k') | remoting/host/dns_blackhole_checker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698