| Index: base/values.h
|
| diff --git a/base/values.h b/base/values.h
|
| index 9509c95f609078562fcc32ee87583f579c7c064c..e19eca761fdeabadb474b69e02b0e183ad01d327 100644
|
| --- a/base/values.h
|
| +++ b/base/values.h
|
| @@ -29,7 +29,6 @@
|
|
|
| #include "base/base_export.h"
|
| #include "base/compiler_specific.h"
|
| -#include "base/containers/flat_map.h"
|
| #include "base/macros.h"
|
| #include "base/memory/manual_constructor.h"
|
| #include "base/strings/string16.h"
|
| @@ -49,7 +48,7 @@
|
| // See the file-level comment above for more information.
|
| class BASE_EXPORT Value {
|
| public:
|
| - using DictStorage = base::flat_map<std::string, std::unique_ptr<Value>>;
|
| + using DictStorage = std::map<std::string, std::unique_ptr<Value>>;
|
| using ListStorage = std::vector<std::unique_ptr<Value>>;
|
|
|
| enum class Type {
|
| @@ -95,8 +94,6 @@
|
|
|
| explicit Value(const std::vector<char>& in_blob);
|
| explicit Value(std::vector<char>&& in_blob) noexcept;
|
| -
|
| - explicit Value(DictStorage&& in_dict) noexcept;
|
|
|
| Value& operator=(const Value& that);
|
| Value& operator=(Value&& that) noexcept;
|
|
|