// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_WEB_TEST_COMMON_TRACKED_DICTIONARY_H_ #define CONTENT_WEB_TEST_COMMON_TRACKED_DICTIONARY_H_ #include <string> #include "base/values.h" namespace content { // TrackedDictionary wraps base::Value::Dict, but forces all mutations to go // through TrackedDictionary's Set methods. This allows tracking of changes // accumulated since the last call to ResetChangeTracking. class TrackedDictionary { … }; } // namespace content #endif // CONTENT_WEB_TEST_COMMON_TRACKED_DICTIONARY_H_