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

Side by Side Diff: chrome/browser/enumerate_modules_model_unittest_win.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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
7 #include "base/macros.h"
5 #include "base/strings/string_number_conversions.h" 8 #include "base/strings/string_number_conversions.h"
6 #include "base/strings/string_util.h" 9 #include "base/strings/string_util.h"
7 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
8 #include "chrome/browser/enumerate_modules_model_win.h" 11 #include "chrome/browser/enumerate_modules_model_win.h"
9 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
10 13
11 typedef testing::Test EnumerateModulesTest; 14 typedef testing::Test EnumerateModulesTest;
12 15
13 // Set up some constants to use as default when creating the structs. 16 // Set up some constants to use as default when creating the structs.
14 static const ModuleEnumerator::ModuleType kType = 17 static const ModuleEnumerator::ModuleType kType =
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 ModuleEnumerator::Module module; 234 ModuleEnumerator::Module module;
232 module.location = kCollapsePathList[i].test_case; 235 module.location = kCollapsePathList[i].test_case;
233 module_enumerator->CollapsePath(&module); 236 module_enumerator->CollapsePath(&module);
234 237
235 SCOPED_TRACE("Test case no " + base::IntToString(i) + ": '" + 238 SCOPED_TRACE("Test case no " + base::IntToString(i) + ": '" +
236 base::UTF16ToASCII(kCollapsePathList[i].expected_result) + 239 base::UTF16ToASCII(kCollapsePathList[i].expected_result) +
237 "'"); 240 "'");
238 EXPECT_EQ(kCollapsePathList[i].expected_result, module.location); 241 EXPECT_EQ(kCollapsePathList[i].expected_result, module.location);
239 } 242 }
240 } 243 }
OLDNEW
« no previous file with comments | « chrome/browser/engagement/site_engagement_service_unittest.cc ('k') | chrome/browser/enumerate_modules_model_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698