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

Side by Side Diff: cc/raster/texture_compressor_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/texture_compressor_etc1_unittest.cc ('k') | cc/raster/tile_task_runner.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 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 <stdint.h>
6
5 #include "base/logging.h" 7 #include "base/logging.h"
6 #include "cc/debug/lap_timer.h" 8 #include "cc/debug/lap_timer.h"
7 #include "cc/raster/texture_compressor.h" 9 #include "cc/raster/texture_compressor.h"
8 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
9 #include "testing/perf/perf_test.h" 11 #include "testing/perf/perf_test.h"
10 12
11 namespace cc { 13 namespace cc {
12 namespace { 14 namespace {
13 15
14 const int kTimeLimitMillis = 2000; 16 const int kTimeLimitMillis = 2000;
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 INSTANTIATE_TEST_CASE_P( 114 INSTANTIATE_TEST_CASE_P(
113 TextureCompressorPerfTests, 115 TextureCompressorPerfTests,
114 TextureCompressorPerfTest, 116 TextureCompressorPerfTest,
115 ::testing::Combine(::testing::Values(TextureCompressor::kQualityLow, 117 ::testing::Combine(::testing::Values(TextureCompressor::kQualityLow,
116 TextureCompressor::kQualityMedium, 118 TextureCompressor::kQualityMedium,
117 TextureCompressor::kQualityHigh), 119 TextureCompressor::kQualityHigh),
118 ::testing::Values(TextureCompressor::kFormatETC1))); 120 ::testing::Values(TextureCompressor::kFormatETC1)));
119 121
120 } // namespace 122 } // namespace
121 } // namespace cc 123 } // namespace cc
OLDNEW
« no previous file with comments | « cc/raster/texture_compressor_etc1_unittest.cc ('k') | cc/raster/tile_task_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698