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

Unified Diff: chrome/install_static/install_util_unittest.cc

Issue 1841573002: [Chrome ELF] New NT registry API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed new unit tests for install_static. Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/install_static/install_util_unittest.cc
diff --git a/chrome/install_static/install_util_unittest.cc b/chrome/install_static/install_util_unittest.cc
index 0af8488d2651d598c7bb37b94658c2f45a1a711a..382671a3ddee79d003e8c9b9c134fd1ea60f502d 100644
--- a/chrome/install_static/install_util_unittest.cc
+++ b/chrome/install_static/install_util_unittest.cc
@@ -70,7 +70,7 @@ TEST(InstallStaticTest, TokenizeString) {
// TokenizeString16 tests.
// Test if the string is tokenized correctly with all tokens stripped of
// leading and trailing spaces.
- std::vector<base::string16> results16 =
+ std::vector<std::wstring> results16 =
TokenizeString16(L"un |deux\t|trois\n|quatre", L'|', true);
ASSERT_EQ(4u, results16.size());
EXPECT_THAT(results16, ElementsAre(L"un", L"deux", L"trois", L"quatre"));

Powered by Google App Engine
This is Rietveld 408576698