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

Side by Side Diff: base/logging_unittest.cc

Issue 754433003: Update from https://crrev.com/305340 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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/files/file_path.h ('k') | base/mac/scoped_mach_port.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" 5 #include "base/basictypes.h"
6 #include "base/compiler_specific.h"
6 #include "base/logging.h" 7 #include "base/logging.h"
7 8
8 #include "testing/gmock/include/gmock/gmock.h" 9 #include "testing/gmock/include/gmock/gmock.h"
9 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
10 11
11 namespace logging { 12 namespace logging {
12 13
13 namespace { 14 namespace {
14 15
15 using ::testing::Return; 16 using ::testing::Return;
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 std::wstring wstr = L"Hello World"; 249 std::wstring wstr = L"Hello World";
249 std::ostringstream ostr; 250 std::ostringstream ostr;
250 ostr << wstr; 251 ostr << wstr;
251 EXPECT_EQ("Hello World", ostr.str()); 252 EXPECT_EQ("Hello World", ostr.str());
252 } 253 }
253 } // namespace nested_test 254 } // namespace nested_test
254 255
255 } // namespace 256 } // namespace
256 257
257 } // namespace logging 258 } // namespace logging
OLDNEW
« no previous file with comments | « base/files/file_path.h ('k') | base/mac/scoped_mach_port.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698