Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |