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

Side by Side Diff: base/file_version_info_unittest.cc

Issue 1538743002: Switch to standard integer types in base/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DEPS roll too 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
« no previous file with comments | « base/file_version_info_mac.mm ('k') | base/file_version_info_win.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 <stddef.h>
6
5 #include "base/file_version_info.h" 7 #include "base/file_version_info.h"
6 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/macros.h"
7 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
8 #include "base/path_service.h" 11 #include "base/path_service.h"
12 #include "build/build_config.h"
9 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
10 14
11 #if defined(OS_WIN) 15 #if defined(OS_WIN)
12 #include "base/file_version_info_win.h" 16 #include "base/file_version_info_win.h"
13 #endif 17 #endif
14 18
15 using base::FilePath; 19 using base::FilePath;
16 20
17 namespace { 21 namespace {
18 22
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 EXPECT_TRUE(version_info_win->GetValue(L"Custom prop 3", &str)); 132 EXPECT_TRUE(version_info_win->GetValue(L"Custom prop 3", &str));
129 EXPECT_EQ(L"1600 Amphitheatre Parkway Mountain View, CA 94043", str); 133 EXPECT_EQ(L"1600 Amphitheatre Parkway Mountain View, CA 94043", str);
130 EXPECT_EQ(L"1600 Amphitheatre Parkway Mountain View, CA 94043", 134 EXPECT_EQ(L"1600 Amphitheatre Parkway Mountain View, CA 94043",
131 version_info_win->GetStringValue(L"Custom prop 3")); 135 version_info_win->GetStringValue(L"Custom prop 3"));
132 136
133 // Test an non-existing property. 137 // Test an non-existing property.
134 EXPECT_FALSE(version_info_win->GetValue(L"Unknown property", &str)); 138 EXPECT_FALSE(version_info_win->GetValue(L"Unknown property", &str));
135 EXPECT_EQ(L"", version_info_win->GetStringValue(L"Unknown property")); 139 EXPECT_EQ(L"", version_info_win->GetStringValue(L"Unknown property"));
136 } 140 }
137 #endif 141 #endif
OLDNEW
« no previous file with comments | « base/file_version_info_mac.mm ('k') | base/file_version_info_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698