#include "third_party/libaddressinput/chromium/chrome_storage_impl.h"
#include <memory>
#include <utility>
#include "base/values.h"
#include "components/prefs/writeable_pref_store.h"
#include "third_party/libaddressinput/chromium/fallback_data_store.h"
namespace autofill {
ChromeStorageImpl::ChromeStorageImpl(WriteablePrefStore* store)
: … { … }
ChromeStorageImpl::~ChromeStorageImpl() { … }
void ChromeStorageImpl::Put(const std::string& key, std::string* data) { … }
void ChromeStorageImpl::Get(const std::string& key,
const Storage::Callback& data_ready) const { … }
void ChromeStorageImpl::OnInitializationCompleted(bool succeeded) { … }
void ChromeStorageImpl::DoGet(const std::string& key,
const Storage::Callback& data_ready) { … }
ChromeStorageImpl::Request::Request(const std::string& key,
const Callback& callback)
: … { … }
}