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

Side by Side Diff: remoting/protocol/monitored_video_stub.h

Issue 1355063004: Template methods on Timer classes instead of the classes themselves. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: timer: fixcaller Created 5 years, 3 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_PROTOCOL_MONITORED_VIDEO_STUB_H_ 5 #ifndef REMOTING_PROTOCOL_MONITORED_VIDEO_STUB_H_
6 #define REMOTING_PROTOCOL_MONITORED_VIDEO_STUB_H_ 6 #define REMOTING_PROTOCOL_MONITORED_VIDEO_STUB_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/threading/thread_checker.h" 9 #include "base/threading/thread_checker.h"
10 #include "base/timer/timer.h" 10 #include "base/timer/timer.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 const base::Closure& done) override; 44 const base::Closure& done) override;
45 45
46 private: 46 private:
47 void OnConnectivityCheckTimeout(); 47 void OnConnectivityCheckTimeout();
48 void NotifyChannelState(bool connected); 48 void NotifyChannelState(bool connected);
49 49
50 VideoStub* video_stub_; 50 VideoStub* video_stub_;
51 ChannelStateCallback callback_; 51 ChannelStateCallback callback_;
52 base::ThreadChecker thread_checker_; 52 base::ThreadChecker thread_checker_;
53 bool is_connected_; 53 bool is_connected_;
54 base::DelayTimer<MonitoredVideoStub> connectivity_check_timer_; 54 base::DelayTimer connectivity_check_timer_;
55 55
56 DISALLOW_COPY_AND_ASSIGN(MonitoredVideoStub); 56 DISALLOW_COPY_AND_ASSIGN(MonitoredVideoStub);
57 }; 57 };
58 58
59 } // namespace protocol 59 } // namespace protocol
60 } // namespace remoting 60 } // namespace remoting
61 61
62 #endif // REMOTING_PROTOCOL_MONITORED_VIDEO_STUB_H_ 62 #endif // REMOTING_PROTOCOL_MONITORED_VIDEO_STUB_H_
OLDNEW
« no previous file with comments | « remoting/protocol/libjingle_transport_factory.cc ('k') | remoting/protocol/monitored_video_stub_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698