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

Side by Side Diff: third_party/WebKit/Source/platform/heap/Member.h

Issue 2822453003: Wrap large IndexedDB values into Blobs before writing to LevelDB. (Closed)
Patch Set: Created 3 years, 8 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef Member_h 5 #ifndef Member_h
6 #define Member_h 6 #define Member_h
7 7
8 #include "platform/heap/HeapPage.h"
8 #include "platform/wtf/Allocator.h" 9 #include "platform/wtf/Allocator.h"
9 #include "platform/wtf/HashFunctions.h" 10 #include "platform/wtf/HashFunctions.h"
10 #include "platform/wtf/HashTraits.h" 11 #include "platform/wtf/HashTraits.h"
11 12
12 namespace blink { 13 namespace blink {
13 14
14 template <typename T> 15 template <typename T>
15 class Persistent; 16 class Persistent;
16 template <typename T> 17 template <typename T>
17 class TraceWrapperMember; 18 class TraceWrapperMember;
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 541
541 template <typename T> 542 template <typename T>
542 struct IsTraceable<blink::TraceWrapperMember<T>> { 543 struct IsTraceable<blink::TraceWrapperMember<T>> {
543 STATIC_ONLY(IsTraceable); 544 STATIC_ONLY(IsTraceable);
544 static const bool value = true; 545 static const bool value = true;
545 }; 546 };
546 547
547 } // namespace WTF 548 } // namespace WTF
548 549
549 #endif // Member_h 550 #endif // Member_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698