Roll src/third_party/WebKit afc1431:5a99872 (svn 194212:194220)
[chromium-blink-merge.git] / content / test / test_time_source.cc
blobad602fd9448615bfea13b6e7e30d3cb07fd89ada
1 // Copyright 2015 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 "content/test/test_time_source.h"
7 #include "cc/test/test_now_source.h"
9 namespace content {
11 TestTimeSource::TestTimeSource(scoped_refptr<cc::TestNowSource> time_source)
12 : time_source_(time_source) {
15 TestTimeSource::~TestTimeSource() {
18 base::TimeTicks TestTimeSource::Now() const {
19 return time_source_->Now();
22 } // namespace content