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

Side by Side 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, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef StorageManager_h
6 #define StorageManager_h
7
8 #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.
9 #include "bindings/core/v8/ScriptState.h"
10 #include "bindings/core/v8/ScriptWrappable.h"
11 #include "platform/heap/Heap.h"
12
13 namespace blink {
14
15 class StorageManager final : public GarbageCollected<StorageManager>, public Scr iptWrappable { // 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!
16 DEFINE_WRAPPERTYPEINFO(); // Cargo culted
17 public:
18 ScriptPromise requestPersistent(ScriptState*);
19 ScriptPromise persistentPermission(ScriptState*);
20 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
21 };
22
23 } // namespace blink
24
25 #endif // StorageManager_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698