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

Unified Diff: remoting/host/continue_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
« no previous file with comments | « remoting/host/clipboard.h ('k') | remoting/host/disconnect_window.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/continue_window.h
diff --git a/remoting/host/continue_window.h b/remoting/host/continue_window.h
index 384c76dd75bac1d0b2e69943dc2db9e6459f5802..dd2c4ea3b93b4319913873eab2552fc3290cfdc5 100644
--- a/remoting/host/continue_window.h
+++ b/remoting/host/continue_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_CONTINUE_WINDOW_H
-#define REMOTING_HOST_CONTINUE_WINDOW_H
+#ifndef REMOTING_HOST_CONTINUE_WINDOW_H_
+#define REMOTING_HOST_CONTINUE_WINDOW_H_
+#pragma once
alexeypa (please no reviews) 2012/07/09 16:22:36 #pragma once is against C++ style guide if I'm not
#include "base/callback.h"
@@ -32,6 +33,6 @@ class ContinueWindow {
static scoped_ptr<ContinueWindow> Create();
};
-}
+} // namespace remoting
-#endif // REMOTING_HOST_CONTINUE_WINDOW_H
+#endif // REMOTING_HOST_CONTINUE_WINDOW_H_
« no previous file with comments | « remoting/host/clipboard.h ('k') | remoting/host/disconnect_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698