#include "content/web_test/common/tracked_dictionary.h"
#include <utility>
namespace content {
TrackedDictionary::TrackedDictionary() { … }
void TrackedDictionary::ResetChangeTracking() { … }
void TrackedDictionary::ApplyUntrackedChanges(
const base::Value::Dict& new_changes) { … }
void TrackedDictionary::Set(const std::string& path, base::Value new_value) { … }
void TrackedDictionary::SetBoolean(const std::string& path, bool new_value) { … }
void TrackedDictionary::SetInteger(const std::string& path, int new_value) { … }
void TrackedDictionary::SetString(const std::string& path,
const std::string& new_value) { … }
}