Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(740)

Side by Side Diff: components/scheduler/renderer/task_cost_estimator_unittest.cc

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/memory/scoped_ptr.h"
5 #include "base/test/simple_test_tick_clock.h" 6 #include "base/test/simple_test_tick_clock.h"
6 #include "components/scheduler/base/test_time_source.h" 7 #include "components/scheduler/base/test_time_source.h"
7 #include "components/scheduler/renderer/task_cost_estimator.h" 8 #include "components/scheduler/renderer/task_cost_estimator.h"
8
9 #include "testing/gmock/include/gmock/gmock.h" 9 #include "testing/gmock/include/gmock/gmock.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 11
12 namespace scheduler { 12 namespace scheduler {
13 13
14 class TaskCostEstimatorTest : public testing::Test { 14 class TaskCostEstimatorTest : public testing::Test {
15 public: 15 public:
16 TaskCostEstimatorTest() {} 16 TaskCostEstimatorTest() {}
17 ~TaskCostEstimatorTest() override {} 17 ~TaskCostEstimatorTest() override {}
18 18
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 clock_.Advance(base::TimeDelta::FromMilliseconds(500)); 69 clock_.Advance(base::TimeDelta::FromMilliseconds(500));
70 estimator.DidProcessTask(task); 70 estimator.DidProcessTask(task);
71 clock_.Advance(base::TimeDelta::FromMilliseconds(500)); 71 clock_.Advance(base::TimeDelta::FromMilliseconds(500));
72 estimator.DidProcessTask(task); 72 estimator.DidProcessTask(task);
73 73
74 EXPECT_EQ(base::TimeDelta::FromMilliseconds(1000), 74 EXPECT_EQ(base::TimeDelta::FromMilliseconds(1000),
75 estimator.expected_task_duration()); 75 estimator.expected_task_duration());
76 } 76 }
77 77
78 } // namespace scheduler 78 } // namespace scheduler
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698