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

Side by Side Diff: chrome/browser/win/enumerate_modules_model_unittest.cc

Issue 2098713003: Moved a bunch of win-specific files to the new win folder in chrome/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 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
« no previous file with comments | « chrome/browser/win/enumerate_modules_model.cc ('k') | chrome/browser/win/jumplist.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 (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 "chrome/browser/win/enumerate_modules_model.h"
6
5 #include <stddef.h> 7 #include <stddef.h>
6 8
7 #include "base/macros.h" 9 #include "base/macros.h"
8 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
9 #include "base/strings/string_util.h" 11 #include "base/strings/string_util.h"
10 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
11 #include "chrome/browser/enumerate_modules_model_win.h"
12 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
13 14
14 typedef testing::Test EnumerateModulesTest; 15 typedef testing::Test EnumerateModulesTest;
15 16
16 // Set up some constants to use as default when creating the structs. 17 // Set up some constants to use as default when creating the structs.
17 static const ModuleEnumerator::ModuleType kType = 18 static const ModuleEnumerator::ModuleType kType =
18 ModuleEnumerator::LOADED_MODULE; 19 ModuleEnumerator::LOADED_MODULE;
19 20
20 static const ModuleEnumerator::ModuleStatus kStatus = 21 static const ModuleEnumerator::ModuleStatus kStatus =
21 ModuleEnumerator::NOT_MATCHED; 22 ModuleEnumerator::NOT_MATCHED;
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 ModuleEnumerator::Module module; 235 ModuleEnumerator::Module module;
235 module.location = kCollapsePathList[i].test_case; 236 module.location = kCollapsePathList[i].test_case;
236 module_enumerator->CollapsePath(&module); 237 module_enumerator->CollapsePath(&module);
237 238
238 SCOPED_TRACE("Test case no " + base::IntToString(i) + ": '" + 239 SCOPED_TRACE("Test case no " + base::IntToString(i) + ": '" +
239 base::UTF16ToASCII(kCollapsePathList[i].expected_result) + 240 base::UTF16ToASCII(kCollapsePathList[i].expected_result) +
240 "'"); 241 "'");
241 EXPECT_EQ(kCollapsePathList[i].expected_result, module.location); 242 EXPECT_EQ(kCollapsePathList[i].expected_result, module.location);
242 } 243 }
243 } 244 }
OLDNEW
« no previous file with comments | « chrome/browser/win/enumerate_modules_model.cc ('k') | chrome/browser/win/jumplist.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698