| 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 // This file specifies a recursive data storage class called Value intended for | 5 // This file specifies a recursive data storage class called Value intended for |
| 6 // storing setting and other persistable data. It includes the ability to | 6 // storing setting and other persistable data. It includes the ability to |
| 7 // specify (recursive) lists and dictionaries, so it's fairly expressive. | 7 // specify (recursive) lists and dictionaries, so it's fairly expressive. |
| 8 // However, the API is optimized for the common case, namely storing a | 8 // However, the API is optimized for the common case, namely storing a |
| 9 // hierarchical tree of simple values. Given a DictionaryValue root, you can | 9 // hierarchical tree of simple values. Given a DictionaryValue root, you can |
| 10 // easily do things like: | 10 // easily do things like: |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 | 464 |
| 465 } // namespace base | 465 } // namespace base |
| 466 | 466 |
| 467 // http://crbug.com/88666 | 467 // http://crbug.com/88666 |
| 468 using base::BinaryValue; | 468 using base::BinaryValue; |
| 469 using base::DictionaryValue; | 469 using base::DictionaryValue; |
| 470 using base::FundamentalValue; | 470 using base::FundamentalValue; |
| 471 using base::ListValue; | 471 using base::ListValue; |
| 472 using base::StringValue; | 472 using base::StringValue; |
| 473 using base::Value; | 473 using base::Value; |
| 474 using base::ValueMap; | |
| 475 using base::ValueSerializer; | |
| 476 using base::ValueVector; | |
| 477 | 474 |
| 478 #endif // BASE_VALUES_H_ | 475 #endif // BASE_VALUES_H_ |
| OLD | NEW |