chromium/extensions/browser/api/storage/storage_api.h

// 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.

#ifndef EXTENSIONS_BROWSER_API_STORAGE_STORAGE_API_H_
#define EXTENSIONS_BROWSER_API_STORAGE_STORAGE_API_H_

#include "base/compiler_specific.h"
#include "components/value_store/value_store.h"
#include "extensions/browser/api/storage/session_storage_manager.h"
#include "extensions/browser/api/storage/settings_namespace.h"
#include "extensions/browser/api/storage/settings_observer.h"
#include "extensions/browser/api/storage/storage_area_namespace.h"
#include "extensions/browser/api/storage/storage_frontend.h"
#include "extensions/browser/extension_function.h"

namespace extensions {

// Superclass of all settings functions.
class SettingsFunction : public ExtensionFunction {};

class StorageStorageAreaGetFunction : public SettingsFunction {};

class StorageStorageAreaGetKeysFunction : public SettingsFunction {};

class StorageStorageAreaSetFunction : public SettingsFunction {};

class StorageStorageAreaRemoveFunction : public SettingsFunction {};

class StorageStorageAreaClearFunction : public SettingsFunction {};

class StorageStorageAreaGetBytesInUseFunction : public SettingsFunction {};

class StorageStorageAreaSetAccessLevelFunction : public SettingsFunction {};

}  // namespace extensions

#endif  // EXTENSIONS_BROWSER_API_STORAGE_STORAGE_API_H_