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

Side by Side Diff: base/logging_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/logging.cc ('k') | base/logging_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 "base/basictypes.h"
6 #include "base/compiler_specific.h" 5 #include "base/compiler_specific.h"
7 #include "base/logging.h" 6 #include "base/logging.h"
7 #include "base/macros.h"
8 8
9 #include "testing/gmock/include/gmock/gmock.h" 9 #include "testing/gmock/include/gmock/gmock.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 11
12 namespace logging { 12 namespace logging {
13 13
14 namespace { 14 namespace {
15 15
16 using ::testing::Return; 16 using ::testing::Return;
17 17
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 std::wstring wstr = L"Hello World"; 291 std::wstring wstr = L"Hello World";
292 std::ostringstream ostr; 292 std::ostringstream ostr;
293 ostr << wstr; 293 ostr << wstr;
294 EXPECT_EQ("Hello World", ostr.str()); 294 EXPECT_EQ("Hello World", ostr.str());
295 } 295 }
296 } // namespace nested_test 296 } // namespace nested_test
297 297
298 } // namespace 298 } // namespace
299 299
300 } // namespace logging 300 } // namespace logging
OLDNEW
« no previous file with comments | « base/logging.cc ('k') | base/logging_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698