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_
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"
17 class TestTickClock
: public base::TickClock
{
20 explicit TestTickClock(base::TimeTicks now
);
21 ~TestTickClock() override
;
23 base::TimeTicks
NowTicks() override
;
24 void set_now(base::TimeTicks now
) { now_ticks_
= now
; }
27 base::TimeTicks now_ticks_
;
28 DISALLOW_COPY_AND_ASSIGN(TestTickClock
);
33 #endif // NET_URL_REQUEST_URL_REQUEST_THROTTLER_TEST_SUPPORT_H_