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

Unified Diff: remoting/host/signaling_connector.h

Issue 10700129: remoting/host: Fix cpplint warning of header guards. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rm #pragma once 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/signaling_connector.h
diff --git a/remoting/host/signaling_connector.h b/remoting/host/signaling_connector.h
index 582b4ae3e864ebab31aac01740d0562b0293f776..1917441532e4e56e48e077362faf119621181397 100644
--- a/remoting/host/signaling_connector.h
+++ b/remoting/host/signaling_connector.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_SIGNALING_CONNECTOR_H
-#define REMOTING_HOST_SIGNALING_CONNECTOR_H
+#ifndef REMOTING_HOST_SIGNALING_CONNECTOR_H_
+#define REMOTING_HOST_SIGNALING_CONNECTOR_H_
+#pragma once
alexeypa (please no reviews) 2012/07/09 17:10:40 Remove this pragma.
#include "base/basictypes.h"
#include "base/memory/weak_ptr.h"
@@ -104,4 +105,4 @@ class SignalingConnector
} // namespace remoting
-#endif // REMOTING_HOST_SIGNALING_CONNECTOR_H
+#endif // REMOTING_HOST_SIGNALING_CONNECTOR_H_

Powered by Google App Engine
This is Rietveld 408576698