ChildAccountService: get service flags from AccountTrackerService instead of fetching...
[chromium-blink-merge.git] / net / url_request / url_request_throttler_test_support.cc
blob8d103352c244a3ee7a7888c2fcbaa6f44700c6c4
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
3 // found in the LICENSE file.
5 #include "net/url_request/url_request_throttler_test_support.h"
7 #include "net/url_request/url_request_throttler_entry.h"
9 namespace net {
11 TestTickClock::TestTickClock() {}
13 TestTickClock::TestTickClock(base::TimeTicks now) : now_ticks_(now) {}
15 TestTickClock::~TestTickClock() {}
17 base::TimeTicks TestTickClock::NowTicks() {
18 return now_ticks_;
21 } // namespace net