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

Side by Side Diff: remoting/host/desktop_session_win.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/desktop_session_proxy.h ('k') | remoting/host/desktop_session_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 #ifndef REMOTING_HOST_DESKTOP_SESSION_WIN_H_ 5 #ifndef REMOTING_HOST_DESKTOP_SESSION_WIN_H_
6 #define REMOTING_HOST_DESKTOP_SESSION_WIN_H_ 6 #define REMOTING_HOST_DESKTOP_SESSION_WIN_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 // Stops monitoring for session attach/detach events. 78 // Stops monitoring for session attach/detach events.
79 void StopMonitoring(); 79 void StopMonitoring();
80 80
81 // Asks DaemonProcess to terminate this session. 81 // Asks DaemonProcess to terminate this session.
82 void TerminateSession(); 82 void TerminateSession();
83 83
84 // Injects a secure attention sequence into the session. 84 // Injects a secure attention sequence into the session.
85 virtual void InjectSas() = 0; 85 virtual void InjectSas() = 0;
86 86
87 // WorkerProcessIpcDelegate implementation. 87 // WorkerProcessIpcDelegate implementation.
88 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; 88 virtual void OnChannelConnected(int32 peer_pid) override;
89 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 89 virtual bool OnMessageReceived(const IPC::Message& message) override;
90 virtual void OnPermanentError(int exit_code) OVERRIDE; 90 virtual void OnPermanentError(int exit_code) override;
91 91
92 // WtsTerminalObserver implementation. 92 // WtsTerminalObserver implementation.
93 virtual void OnSessionAttached(uint32 session_id) OVERRIDE; 93 virtual void OnSessionAttached(uint32 session_id) override;
94 virtual void OnSessionDetached() OVERRIDE; 94 virtual void OnSessionDetached() override;
95 95
96 private: 96 private:
97 // ChromotingDesktopDaemonMsg_DesktopAttached handler. 97 // ChromotingDesktopDaemonMsg_DesktopAttached handler.
98 void OnDesktopSessionAgentAttached(IPC::PlatformFileForTransit desktop_pipe); 98 void OnDesktopSessionAgentAttached(IPC::PlatformFileForTransit desktop_pipe);
99 99
100 // Requests the desktop process to crash. 100 // Requests the desktop process to crash.
101 void CrashDesktopProcess(const tracked_objects::Location& location); 101 void CrashDesktopProcess(const tracked_objects::Location& location);
102 102
103 // Reports time elapsed since previous event to the debug log. 103 // Reports time elapsed since previous event to the debug log.
104 void ReportElapsedTime(const std::string& event); 104 void ReportElapsedTime(const std::string& event);
(...skipping 21 matching lines...) Expand all
126 base::OneShotTimer<DesktopSessionWin> session_attach_timer_; 126 base::OneShotTimer<DesktopSessionWin> session_attach_timer_;
127 127
128 base::Time last_timestamp_; 128 base::Time last_timestamp_;
129 129
130 DISALLOW_COPY_AND_ASSIGN(DesktopSessionWin); 130 DISALLOW_COPY_AND_ASSIGN(DesktopSessionWin);
131 }; 131 };
132 132
133 } // namespace remoting 133 } // namespace remoting
134 134
135 #endif // REMOTING_HOST_DESKTOP_SESSION_WIN_H_ 135 #endif // REMOTING_HOST_DESKTOP_SESSION_WIN_H_
OLDNEW
« no previous file with comments | « remoting/host/desktop_session_proxy.h ('k') | remoting/host/desktop_session_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698