Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1280)

Unified Diff: Source/modules/quota/DurableStorageController.h

Issue 1154573005: Expose Durable Storage API to script (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: uploaded the test results Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/modules/quota/DurableStorageController.h
diff --git a/Source/modules/quota/DurableStorageController.h b/Source/modules/quota/DurableStorageController.h
new file mode 100644
index 0000000000000000000000000000000000000000..f391e6164e50a402b64ee40efb336a8fc2a379ae
--- /dev/null
+++ b/Source/modules/quota/DurableStorageController.h
@@ -0,0 +1,44 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef DurableStorageController_h
+#define DurableStorageController_h
+
+#include "core/frame/LocalFrameLifecycleObserver.h"
+#include "modules/ModulesExport.h"
+#include "platform/Supplementable.h"
+
+namespace blink {
+
+class WebDurableStorageDispatcher;
+
+class MODULES_EXPORT DurableStorageController final
+ : public NoBaseWillBeGarbageCollectedFinalized<DurableStorageController>
+ , public WillBeHeapSupplement<LocalFrame>
+ , public LocalFrameLifecycleObserver {
+ WTF_MAKE_NONCOPYABLE(DurableStorageController);
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DurableStorageController);
dgrogan 2015/06/19 22:34:07 This was all cargo culted.
+public:
+ virtual ~DurableStorageController();
+
+ static void provideTo(LocalFrame&, WebDurableStorageDispatcher*);
+ static DurableStorageController* from(LocalFrame&);
+ static const char* supplementName();
+
+ WebDurableStorageDispatcher* client() const;
+
+ DECLARE_VIRTUAL_TRACE();
+
+private:
+ DurableStorageController(LocalFrame&, WebDurableStorageDispatcher*);
+
+ // Inherited from LocalFrameLifecycleObserver.
+ virtual void willDetachFrameHost() override;
+
+ WebDurableStorageDispatcher* m_client;
+};
+
+} // namespace blink
+
+#endif // DurableStorageController_h

Powered by Google App Engine
This is Rietveld 408576698