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

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

Issue 1154573005: Expose Durable Storage API to script (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update comment Created 5 years, 5 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/StorageManager.h
diff --git a/Source/modules/quota/StorageManager.h b/Source/modules/quota/StorageManager.h
new file mode 100644
index 0000000000000000000000000000000000000000..7d91a79c8be19f0c802e0e7733b5450ab9cc78c7
--- /dev/null
+++ b/Source/modules/quota/StorageManager.h
@@ -0,0 +1,25 @@
+// 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 StorageManager_h
+#define StorageManager_h
+
+#include "bindings/core/v8/ScriptPromise.h"
jsbell 2015/08/03 19:57:41 Can ScriptPromise and ScriptState be forward-decla
dgrogan 2015/08/06 23:52:02 Done.
+#include "bindings/core/v8/ScriptState.h"
+#include "bindings/core/v8/ScriptWrappable.h"
+#include "platform/heap/Heap.h"
+
+namespace blink {
+
+class StorageManager final : public GarbageCollected<StorageManager>, public ScriptWrappable { // Cargo culted
jsbell 2015/08/03 19:57:41 Ditch the 'cargo culted' comments. This is correct
dgrogan 2015/08/06 23:52:02 Thanks!
+DEFINE_WRAPPERTYPEINFO(); // Cargo culted
+public:
+ ScriptPromise requestPersistent(ScriptState*);
+ ScriptPromise persistentPermission(ScriptState*);
+ DEFINE_INLINE_TRACE() { } // Cargo culted
mlamouri (slow - plz ping) 2015/08/04 13:15:19 Inlining isn't recommended: https://www.chromium.o
dgrogan 2015/08/06 23:52:02 Done. Though note that the blink style guide is mo
+};
+
+} // namespace blink
+
+#endif // StorageManager_h

Powered by Google App Engine
This is Rietveld 408576698