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

Unified Diff: remoting/host/disconnect_window.h

Issue 10700129: remoting/host: Fix cpplint warning of header guards. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: remoting/host/disconnect_window.h
diff --git a/remoting/host/disconnect_window.h b/remoting/host/disconnect_window.h
index f55a90b83809a15a41aa72f84264d94f9ea49445..9fd071c4b2c3c5bf6b01196b9cadefc1d8890dc4 100644
--- a/remoting/host/disconnect_window.h
+++ b/remoting/host/disconnect_window.h
@@ -2,8 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef REMOTING_HOST_DISCONNECT_WINDOW_H
-#define REMOTING_HOST_DISCONNECT_WINDOW_H
+#ifndef REMOTING_HOST_DISCONNECT_WINDOW_H_
+#define REMOTING_HOST_DISCONNECT_WINDOW_H_
+#pragma once
#include <string>
@@ -16,7 +17,6 @@ class ChromotingHost;
class DisconnectWindow {
public:
-
enum {
kMaximumConnectedNameWidthInPixels = 400
};
@@ -39,6 +39,6 @@ class DisconnectWindow {
static scoped_ptr<DisconnectWindow> Create();
};
-}
+} // namespace remoting
-#endif // REMOTING_HOST_DISCONNECT_WINDOW_H
+#endif // REMOTING_HOST_DISCONNECT_WINDOW_H_

Powered by Google App Engine
This is Rietveld 408576698