blob: 086d7fbcea950881f45a1185ace2f14302a857ad [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/value_store/value_store_change.h"
#include <utility>
#include "base/check.h"
#include "base/json/json_writer.h"
#include "base/stl_util.h"
namespace value_store {
base::Value ValueStoreChange::ToValue(ValueStoreChangeList changes) {
base::Value changes_value(base::Value::Type::DICTIONARY);
for (auto& change : changes) {
base::Value change_value(base::Value::Type::DICTIONARY);
if (change.old_value) {
change_value.SetKey("oldValue", std::move(*change.old_value));
}
if (change.new_value) {
change_value.SetKey("newValue", std::move(*change.new_value));
}
changes_value.SetKey(change.key, std::move(change_value));
}
return changes_value;
}
ValueStoreChange::ValueStoreChange(const std::string& key,
absl::optional<base::Value> old_value,
absl::optional<base::Value> new_value)
: key(key),
old_value(std::move(old_value)),
new_value(std::move(new_value)) {}
ValueStoreChange::~ValueStoreChange() = default;
ValueStoreChange::ValueStoreChange(ValueStoreChange&& other) = default;
ValueStoreChange& ValueStoreChange::operator=(ValueStoreChange&& other) =
default;
} // namespace value_store