diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-10 01:18:20 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-10 01:18:20 +0000 |
commit | e19c2fc0de147c55adc24bea05f0c8254cf0a024 (patch) | |
tree | b1627d34e9d5ee1404e48e4ffdd3de0ac90f04a5 /remoting/host/signaling_connector.h | |
parent | 82591dd2cbaa2ace67300c037e77549e3900be1c (diff) | |
download | chromium_src-e19c2fc0de147c55adc24bea05f0c8254cf0a024.zip chromium_src-e19c2fc0de147c55adc24bea05f0c8254cf0a024.tar.gz chromium_src-e19c2fc0de147c55adc24bea05f0c8254cf0a024.tar.bz2 |
remoting/host: Fix cpplint warning of header guards.
Found by:
$ cpplint.py remoting/host/* 2>&1 | grep "guard has wrong"
R=jamiewalch@chromium.org,alexeypa@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10700129
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145814 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/signaling_connector.h')
-rw-r--r-- | remoting/host/signaling_connector.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/remoting/host/signaling_connector.h b/remoting/host/signaling_connector.h index 582b4ae..6cad617 100644 --- a/remoting/host/signaling_connector.h +++ b/remoting/host/signaling_connector.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 REMOTING_HOST_SIGNALING_CONNECTOR_H -#define REMOTING_HOST_SIGNALING_CONNECTOR_H +#ifndef REMOTING_HOST_SIGNALING_CONNECTOR_H_ +#define REMOTING_HOST_SIGNALING_CONNECTOR_H_ #include "base/basictypes.h" #include "base/memory/weak_ptr.h" @@ -104,4 +104,4 @@ class SignalingConnector } // namespace remoting -#endif // REMOTING_HOST_SIGNALING_CONNECTOR_H +#endif // REMOTING_HOST_SIGNALING_CONNECTOR_H_ |