Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_RENDERER_NET_MOCKABLE_ONE_SHOT_TIMER_H_ | |
| 6 #define CHROME_RENDERER_NET_MOCKABLE_ONE_SHOT_TIMER_H_ | |
| 7 | |
| 8 #include "base/callback.h" | |
| 9 #include "base/macros.h" | |
| 10 #include "base/timer/timer.h" | |
| 11 | |
| 12 class MockableOneShotTimer { | |
| 13 public: | |
| 14 MockableOneShotTimer(); | |
| 15 virtual ~MockableOneShotTimer(); | |
|
mmenke
2014/03/04 17:26:25
optional: May want a blank line after the destruc
Elly Fong-Jones
2014/03/06 21:48:37
Done.
| |
| 16 // This interface mirrors base::OneShotTimer. | |
| 17 virtual void Start(const tracked_objects::Location& posted_from, | |
| 18 base::TimeDelta delay, | |
| 19 const base::Closure& task); | |
| 20 virtual void Stop(); | |
| 21 virtual bool IsRunning() const; | |
| 22 | |
| 23 private: | |
| 24 void Fired(); | |
| 25 | |
| 26 base::OneShotTimer<MockableOneShotTimer> timer_; | |
| 27 base::Closure task_; | |
| 28 | |
| 29 DISALLOW_COPY_AND_ASSIGN(MockableOneShotTimer); | |
| 30 }; | |
| 31 | |
| 32 #endif // CHROME_RENDERER_NET_MOCKABLE_ONE_SHOT_TIMER_H_ | |
| OLD | NEW |