| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <string> | 5 #include <string> |
| 6 #include <iostream> | |
| 7 | 6 |
| 8 #include "base/linked_ptr.h" | 7 #include "base/linked_ptr.h" |
| 9 | 8 |
| 10 #include "base/string_util.h" | 9 #include "base/string_util.h" |
| 11 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 12 | 11 |
| 13 namespace { | 12 namespace { |
| 14 | 13 |
| 15 int num = 0; | 14 int num = 0; |
| 16 | 15 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "A2 dtor\n" | 100 "A2 dtor\n" |
| 102 "A0 use\n" | 101 "A0 use\n" |
| 103 "A0 use\n" | 102 "A0 use\n" |
| 104 "A1 use\n" | 103 "A1 use\n" |
| 105 "A3 ctor\n" | 104 "A3 ctor\n" |
| 106 "A0 dtor\n" | 105 "A0 dtor\n" |
| 107 "A3 dtor\n" | 106 "A3 dtor\n" |
| 108 "A1 dtor\n" | 107 "A1 dtor\n" |
| 109 ); | 108 ); |
| 110 } | 109 } |
| OLD | NEW |