| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |