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