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

Side by Side Diff: base/path_service_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/path_service.cc ('k') | base/pickle.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "base/path_service.h" 5 #include "base/path_service.h"
6 6
7 #include "base/basictypes.h"
8 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
9 #include "base/files/file_util.h" 8 #include "base/files/file_util.h"
10 #include "base/files/scoped_temp_dir.h" 9 #include "base/files/scoped_temp_dir.h"
11 #include "base/strings/string_util.h" 10 #include "base/strings/string_util.h"
12 #include "build/build_config.h" 11 #include "build/build_config.h"
13 #include "testing/gtest/include/gtest/gtest-spi.h" 12 #include "testing/gtest/include/gtest/gtest-spi.h"
14 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
15 #include "testing/platform_test.h" 14 #include "testing/platform_test.h"
16 15
17 #if defined(OS_WIN) 16 #if defined(OS_WIN)
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 EXPECT_TRUE(PathService::Get(DIR_PROGRAM_FILES6432, 267 EXPECT_TRUE(PathService::Get(DIR_PROGRAM_FILES6432,
269 &programfiles_dir)); 268 &programfiles_dir));
270 EXPECT_EQ(programfiles_dir.value(), 269 EXPECT_EQ(programfiles_dir.value(),
271 FILE_PATH_LITERAL("C:\\Program Files")); 270 FILE_PATH_LITERAL("C:\\Program Files"));
272 } 271 }
273 #endif 272 #endif
274 } 273 }
275 #endif 274 #endif
276 275
277 } // namespace base 276 } // namespace base
OLDNEW
« no previous file with comments | « base/path_service.cc ('k') | base/pickle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698