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

Unified Diff: remoting/host/local_input_monitor_thread_win.h

Issue 10700129: remoting/host: Fix cpplint warning of header guards. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: forgot to remove one Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/local_input_monitor_thread_linux.h ('k') | remoting/host/sighup_listener_mac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/local_input_monitor_thread_win.h
diff --git a/remoting/host/local_input_monitor_thread_win.h b/remoting/host/local_input_monitor_thread_win.h
index 44fda24212363c8776fb72c0614b9f431e52c491..92687b24965b57621e62a51ecc7bf309d0347560 100644
--- a/remoting/host/local_input_monitor_thread_win.h
+++ b/remoting/host/local_input_monitor_thread_win.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef LOCAL_INPUT_MONITOR_THREAD_WIN_H_
-#define LOCAL_INPUT_MONITOR_THREAD_WIN_H_
+#ifndef REMOTING_HOST_LOCAL_INPUT_MONITOR_THREAD_WIN_H_
+#define REMOTING_HOST_LOCAL_INPUT_MONITOR_THREAD_WIN_H_
#include <set>
@@ -31,7 +31,9 @@ class LocalInputMonitorThread : public base::SimpleThread {
bool RemoveObserver(MouseMoveObserver* mouse_move_observer);
void Stop();
- virtual void Run() OVERRIDE; // Overridden from SimpleThread.
+
+ // Overridden from base::SimpleThread:
+ virtual void Run() OVERRIDE;
void LocalMouseMoved(const SkIPoint& mouse_position);
static LRESULT WINAPI HandleLowLevelMouseEvent(int code,
@@ -47,4 +49,4 @@ class LocalInputMonitorThread : public base::SimpleThread {
} // namespace remoting
-#endif
+#endif // REMOTING_HOST_LOCAL_INPUT_MONITOR_THREAD_WIN_H_
« no previous file with comments | « remoting/host/local_input_monitor_thread_linux.h ('k') | remoting/host/sighup_listener_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698