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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_HOST_SIGNALING_CONNECTOR_H 5 #ifndef REMOTING_HOST_SIGNALING_CONNECTOR_H_
6 #define REMOTING_HOST_SIGNALING_CONNECTOR_H 6 #define REMOTING_HOST_SIGNALING_CONNECTOR_H_
7 #pragma once
alexeypa (please no reviews) 2012/07/09 17:10:40 Remove this pragma.
7 8
8 #include "base/basictypes.h" 9 #include "base/basictypes.h"
9 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
10 #include "base/threading/non_thread_safe.h" 11 #include "base/threading/non_thread_safe.h"
11 #include "base/timer.h" 12 #include "base/timer.h"
12 #include "net/base/network_change_notifier.h" 13 #include "net/base/network_change_notifier.h"
13 #include "remoting/host/gaia_oauth_client.h" 14 #include "remoting/host/gaia_oauth_client.h"
14 #include "remoting/jingle_glue/xmpp_signal_strategy.h" 15 #include "remoting/jingle_glue/xmpp_signal_strategy.h"
15 16
16 namespace net { 17 namespace net {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 bool refreshing_oauth_token_; 98 bool refreshing_oauth_token_;
98 base::Time auth_token_expiry_time_; 99 base::Time auth_token_expiry_time_;
99 100
100 base::OneShotTimer<SignalingConnector> timer_; 101 base::OneShotTimer<SignalingConnector> timer_;
101 102
102 DISALLOW_COPY_AND_ASSIGN(SignalingConnector); 103 DISALLOW_COPY_AND_ASSIGN(SignalingConnector);
103 }; 104 };
104 105
105 } // namespace remoting 106 } // namespace remoting
106 107
107 #endif // REMOTING_HOST_SIGNALING_CONNECTOR_H 108 #endif // REMOTING_HOST_SIGNALING_CONNECTOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698