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> | 6 #include <iostream> |
7 | 7 |
8 #include "base/linked_ptr.h" | 8 #include "base/linked_ptr.h" |
9 | 9 |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 "A2 dtor\n" | 101 "A2 dtor\n" |
102 "A0 use\n" | 102 "A0 use\n" |
103 "A0 use\n" | 103 "A0 use\n" |
104 "A1 use\n" | 104 "A1 use\n" |
105 "A3 ctor\n" | 105 "A3 ctor\n" |
106 "A0 dtor\n" | 106 "A0 dtor\n" |
107 "A3 dtor\n" | 107 "A3 dtor\n" |
108 "A1 dtor\n" | 108 "A1 dtor\n" |
109 ); | 109 ); |
110 } | 110 } |
111 | |
OLD | NEW |