| 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 #ifndef BASE_PROPERTY_BAG_H_ | 5 #ifndef BASE_PROPERTY_BAG_H_ |
| 6 #define BASE_PROPERTY_BAG_H_ | 6 #define BASE_PROPERTY_BAG_H_ |
| 7 #pragma once | |
| 8 | 7 |
| 9 #include <map> | 8 #include <map> |
| 10 | 9 |
| 11 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 12 #include "base/base_export.h" | 11 #include "base/base_export.h" |
| 13 | 12 |
| 14 template <typename T> class linked_ptr; | 13 template <typename T> class linked_ptr; |
| 15 | 14 |
| 16 namespace base { | 15 namespace base { |
| 17 | 16 |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 | 170 |
| 172 T data_; | 171 T data_; |
| 173 }; | 172 }; |
| 174 | 173 |
| 175 DISALLOW_COPY_AND_ASSIGN(PropertyAccessor); | 174 DISALLOW_COPY_AND_ASSIGN(PropertyAccessor); |
| 176 }; | 175 }; |
| 177 | 176 |
| 178 } // namespace base | 177 } // namespace base |
| 179 | 178 |
| 180 #endif // BASE_PROPERTY_BAG_H_ | 179 #endif // BASE_PROPERTY_BAG_H_ |
| OLD | NEW |