chromium/content/public/browser/dom_storage_context.h

// Copyright 2012 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_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_
#define CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_

#include <string>
#include <vector>

#include "base/functional/callback.h"

namespace blink {
class StorageKey;
}  // namespace blink

namespace content {

struct StorageUsageInfo;
class SessionStorageNamespace;
struct SessionStorageUsageInfo;

// Access point for the per-BrowserContext Local Storage and Session Storage
// data.
class DOMStorageContext {};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_DOM_STORAGE_CONTEXT_H_