1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_STORAGE_DOM_WINDOW_STORAGE_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_STORAGE_DOM_WINDOW_STORAGE_H_
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "third_party/blink/public/mojom/dom_storage/storage_area.mojom-blink-forward.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/supplementable.h"
namespace blink {
class ExceptionState;
class LocalDOMWindow;
class StorageArea;
class DOMWindowStorage final : public GarbageCollected<DOMWindowStorage>,
public Supplement<LocalDOMWindow> {
public:
static const char kSupplementName[];
static DOMWindowStorage& From(LocalDOMWindow&);
static StorageArea* sessionStorage(LocalDOMWindow&, ExceptionState&);
static StorageArea* localStorage(LocalDOMWindow&, ExceptionState&);
explicit DOMWindowStorage(LocalDOMWindow&);
StorageArea* sessionStorage(ExceptionState&) const;
StorageArea* localStorage(ExceptionState&) const;
StorageArea* OptionalSessionStorage() const { return session_storage_.Get(); }
StorageArea* OptionalLocalStorage() const { return local_storage_.Get(); }
// These Init* methods allow initializing the StorageArea as an optimization
// to avoid it being requested from the browser process, which can be slow.
// These storage areas are ignored if a cached storage area already exists for
// this storage key/namespace.
void InitLocalStorage(
mojo::PendingRemote<mojom::blink::StorageArea> local_storage_area) const;
void InitSessionStorage(mojo::PendingRemote<mojom::blink::StorageArea>
session_storage_area) const;
void Trace(Visitor*) const override;
private:
StorageArea* GetOrCreateSessionStorage(
ExceptionState& exception_state,
mojo::PendingRemote<mojom::blink::StorageArea> storage_area_for_init)
const;
StorageArea* GetOrCreateLocalStorage(
ExceptionState& exception_state,
mojo::PendingRemote<mojom::blink::StorageArea> storage_area_for_init)
const;
mutable Member<StorageArea> session_storage_;
mutable Member<StorageArea> local_storage_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_STORAGE_DOM_WINDOW_STORAGE_H_
|