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

Side by Side Diff: Source/modules/indexeddb/IDBKeyRange.h

Issue 334263022: Include wtf/RefCounted.h less often in modules/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 unified diff | Download patch
« no previous file with comments | « Source/modules/indexeddb/IDBAny.h ('k') | Source/modules/indexeddb/IndexedDBClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef IDBKeyRange_h 26 #ifndef IDBKeyRange_h
27 #define IDBKeyRange_h 27 #define IDBKeyRange_h
28 28
29 #include "bindings/v8/Dictionary.h" 29 #include "bindings/v8/Dictionary.h"
30 #include "bindings/v8/ScriptWrappable.h" 30 #include "bindings/v8/ScriptWrappable.h"
31 #include "modules/indexeddb/IDBKey.h" 31 #include "modules/indexeddb/IDBKey.h"
32 #include "wtf/PassRefPtr.h"
33 #include "wtf/RefCounted.h"
34 32
35 namespace WebCore { 33 namespace WebCore {
36 34
37 class ExceptionState; 35 class ExceptionState;
38 36
39 class IDBKeyRange : public GarbageCollectedFinalized<IDBKeyRange>, public Script Wrappable { 37 class IDBKeyRange : public GarbageCollectedFinalized<IDBKeyRange>, public Script Wrappable {
40 public: 38 public:
41 enum LowerBoundType { 39 enum LowerBoundType {
42 LowerBoundOpen, 40 LowerBoundOpen,
43 LowerBoundClosed 41 LowerBoundClosed
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 76
79 Member<IDBKey> m_lower; 77 Member<IDBKey> m_lower;
80 Member<IDBKey> m_upper; 78 Member<IDBKey> m_upper;
81 LowerBoundType m_lowerType; 79 LowerBoundType m_lowerType;
82 UpperBoundType m_upperType; 80 UpperBoundType m_upperType;
83 }; 81 };
84 82
85 } // namespace WebCore 83 } // namespace WebCore
86 84
87 #endif // IDBKeyRange_h 85 #endif // IDBKeyRange_h
OLDNEW
« no previous file with comments | « Source/modules/indexeddb/IDBAny.h ('k') | Source/modules/indexeddb/IndexedDBClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698