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

Side by Side Diff: cc/raster/task_graph_runner_perftest.cc

Issue 1539203002: Switch to standard integer types in cc/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes Created 5 years 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
« no previous file with comments | « cc/raster/task_graph_runner.h ('k') | cc/raster/task_graph_work_queue.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 <stddef.h>
6 #include <stdint.h>
7
5 #include <vector> 8 #include <vector>
6 9
10 #include "base/macros.h"
7 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
8 #include "base/time/time.h" 12 #include "base/time/time.h"
9 #include "cc/base/completion_event.h" 13 #include "cc/base/completion_event.h"
10 #include "cc/debug/lap_timer.h" 14 #include "cc/debug/lap_timer.h"
11 #include "cc/raster/synchronous_task_graph_runner.h" 15 #include "cc/raster/synchronous_task_graph_runner.h"
12 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
13 #include "testing/perf/perf_test.h" 17 #include "testing/perf/perf_test.h"
14 18
15 namespace cc { 19 namespace cc {
16 namespace { 20 namespace {
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 RunScheduleAndExecuteTasksTest("0_1_0", 0, 1, 0); 308 RunScheduleAndExecuteTasksTest("0_1_0", 0, 1, 0);
305 RunScheduleAndExecuteTasksTest("0_32_0", 0, 32, 0); 309 RunScheduleAndExecuteTasksTest("0_32_0", 0, 32, 0);
306 RunScheduleAndExecuteTasksTest("2_1_0", 2, 1, 0); 310 RunScheduleAndExecuteTasksTest("2_1_0", 2, 1, 0);
307 RunScheduleAndExecuteTasksTest("2_32_0", 2, 32, 0); 311 RunScheduleAndExecuteTasksTest("2_32_0", 2, 32, 0);
308 RunScheduleAndExecuteTasksTest("2_1_1", 2, 1, 1); 312 RunScheduleAndExecuteTasksTest("2_1_1", 2, 1, 1);
309 RunScheduleAndExecuteTasksTest("2_32_1", 2, 32, 1); 313 RunScheduleAndExecuteTasksTest("2_32_1", 2, 32, 1);
310 } 314 }
311 315
312 } // namespace 316 } // namespace
313 } // namespace cc 317 } // namespace cc
OLDNEW
« no previous file with comments | « cc/raster/task_graph_runner.h ('k') | cc/raster/task_graph_work_queue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698