// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_RENDERER_STORAGE_AREA_H_ #define EXTENSIONS_RENDERER_STORAGE_AREA_H_ #include <string> #include "base/memory/raw_ptr.h" #include "base/values.h" #include "v8/include/v8-forward.h" namespace gin { class Arguments; } namespace extensions { class APIEventHandler; class APIRequestHandler; class APITypeReferenceMap; class BindingAccessChecker; // Implementation of the storage.StorageArea custom type used in the // chrome.storage API. class StorageArea { … }; } // namespace extensions #endif // EXTENSIONS_RENDERER_STORAGE_AREA_H_