Update V8 to version 4.6.61.
[chromium-blink-merge.git] / net / url_request / url_request_throttler_test_support.h
blob93e4e2a39baaee17734dad9c025b6e8ceae4efce
1 // Copyright (c) 2011 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.
5 #ifndef NET_URL_REQUEST_URL_REQUEST_THROTTLER_TEST_SUPPORT_H_
6 #define NET_URL_REQUEST_URL_REQUEST_THROTTLER_TEST_SUPPORT_H_
8 #include <string>
10 #include "base/macros.h"
11 #include "base/time/tick_clock.h"
12 #include "base/time/time.h"
13 #include "net/base/backoff_entry.h"
15 namespace net {
17 class TestTickClock : public base::TickClock {
18 public:
19 TestTickClock();
20 explicit TestTickClock(base::TimeTicks now);
21 ~TestTickClock() override;
23 base::TimeTicks NowTicks() override;
24 void set_now(base::TimeTicks now) { now_ticks_ = now; }
26 private:
27 base::TimeTicks now_ticks_;
28 DISALLOW_COPY_AND_ASSIGN(TestTickClock);
31 } // namespace net
33 #endif // NET_URL_REQUEST_URL_REQUEST_THROTTLER_TEST_SUPPORT_H_