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

Side by Side Diff: gpu/config/gpu_control_list_number_info_unittest.cc

Issue 1542513002: Switch to standard integer types in gpu/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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
5 #include "gpu/config/gpu_control_list.h" 7 #include "gpu/config/gpu_control_list.h"
6 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
7 9
8 namespace gpu { 10 namespace gpu {
9 11
10 class NumberInfoTest : public testing::Test { 12 class NumberInfoTest : public testing::Test {
11 public: 13 public:
12 NumberInfoTest() { } 14 NumberInfoTest() { }
13 ~NumberInfoTest() override {} 15 ~NumberInfoTest() override {}
14 16
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 } 217 }
216 { 218 {
217 BoolInfo info(false); 219 BoolInfo info(false);
218 EXPECT_FALSE(info.Contains(true)); 220 EXPECT_FALSE(info.Contains(true));
219 EXPECT_TRUE(info.Contains(false)); 221 EXPECT_TRUE(info.Contains(false));
220 } 222 }
221 } 223 }
222 224
223 } // namespace gpu 225 } // namespace gpu
224 226
OLDNEW
« no previous file with comments | « gpu/config/gpu_control_list_entry_unittest.cc ('k') | gpu/config/gpu_control_list_os_info_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698