OLD | NEW |
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 27 matching lines...) Expand all Loading... |
38 #include "core/events/EventTarget.h" | 38 #include "core/events/EventTarget.h" |
39 #include "modules/EventModules.h" | 39 #include "modules/EventModules.h" |
40 #include "modules/indexeddb/IDBAny.h" | 40 #include "modules/indexeddb/IDBAny.h" |
41 #include "modules/indexeddb/IDBTransaction.h" | 41 #include "modules/indexeddb/IDBTransaction.h" |
42 #include "modules/indexeddb/IndexedDB.h" | 42 #include "modules/indexeddb/IndexedDB.h" |
43 #include "platform/heap/Handle.h" | 43 #include "platform/heap/Handle.h" |
44 #include "public/platform/WebBlobInfo.h" | 44 #include "public/platform/WebBlobInfo.h" |
45 #include "public/platform/WebIDBCursor.h" | 45 #include "public/platform/WebIDBCursor.h" |
46 #include "public/platform/WebIDBTypes.h" | 46 #include "public/platform/WebIDBTypes.h" |
47 | 47 |
48 namespace WebCore { | 48 namespace blink { |
49 | 49 |
50 class ExceptionState; | 50 class ExceptionState; |
51 class IDBCursor; | 51 class IDBCursor; |
52 struct IDBDatabaseMetadata; | 52 struct IDBDatabaseMetadata; |
53 class SharedBuffer; | 53 class SharedBuffer; |
54 | 54 |
55 class IDBRequest | 55 class IDBRequest |
56 : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<IDBReques
t> | 56 : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<IDBReques
t> |
57 , public EventTargetWithInlineData | 57 , public EventTargetWithInlineData |
58 , public ActiveDOMObject { | 58 , public ActiveDOMObject { |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 Member<IDBKey> m_cursorKey; | 159 Member<IDBKey> m_cursorKey; |
160 Member<IDBKey> m_cursorPrimaryKey; | 160 Member<IDBKey> m_cursorPrimaryKey; |
161 RefPtr<SharedBuffer> m_cursorValue; | 161 RefPtr<SharedBuffer> m_cursorValue; |
162 OwnPtr<Vector<blink::WebBlobInfo> > m_blobInfo; | 162 OwnPtr<Vector<blink::WebBlobInfo> > m_blobInfo; |
163 | 163 |
164 bool m_didFireUpgradeNeededEvent; | 164 bool m_didFireUpgradeNeededEvent; |
165 bool m_preventPropagation; | 165 bool m_preventPropagation; |
166 bool m_resultDirty; | 166 bool m_resultDirty; |
167 }; | 167 }; |
168 | 168 |
169 } // namespace WebCore | 169 } // namespace blink |
170 | 170 |
171 #endif // IDBRequest_h | 171 #endif // IDBRequest_h |
OLD | NEW |