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 16 matching lines...) Expand all Loading... |
27 */ | 27 */ |
28 | 28 |
29 #ifndef IDBRequest_h | 29 #ifndef IDBRequest_h |
30 #define IDBRequest_h | 30 #define IDBRequest_h |
31 | 31 |
32 #include "bindings/v8/DOMRequestState.h" | 32 #include "bindings/v8/DOMRequestState.h" |
33 #include "bindings/v8/ScriptWrappable.h" | 33 #include "bindings/v8/ScriptWrappable.h" |
34 #include "core/dom/ActiveDOMObject.h" | 34 #include "core/dom/ActiveDOMObject.h" |
35 #include "core/dom/DOMError.h" | 35 #include "core/dom/DOMError.h" |
36 #include "core/dom/DOMStringList.h" | 36 #include "core/dom/DOMStringList.h" |
37 #include "core/events/Event.h" | 37 #include "core/dom/Event.h" |
38 #include "core/events/EventListener.h" | 38 #include "core/dom/EventListener.h" |
39 #include "core/events/EventNames.h" | 39 #include "core/dom/EventNames.h" |
40 #include "core/events/EventTarget.h" | 40 #include "core/dom/EventTarget.h" |
41 #include "modules/indexeddb/IDBAny.h" | 41 #include "modules/indexeddb/IDBAny.h" |
42 #include "modules/indexeddb/IDBCallbacks.h" | 42 #include "modules/indexeddb/IDBCallbacks.h" |
43 #include "modules/indexeddb/IDBCursor.h" | 43 #include "modules/indexeddb/IDBCursor.h" |
44 | 44 |
45 namespace WebCore { | 45 namespace WebCore { |
46 | 46 |
47 class ExceptionState; | 47 class ExceptionState; |
48 class IDBTransaction; | 48 class IDBTransaction; |
49 class SharedBuffer; | 49 class SharedBuffer; |
50 | 50 |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 bool m_didFireUpgradeNeededEvent; | 159 bool m_didFireUpgradeNeededEvent; |
160 bool m_preventPropagation; | 160 bool m_preventPropagation; |
161 | 161 |
162 EventTargetData m_eventTargetData; | 162 EventTargetData m_eventTargetData; |
163 DOMRequestState m_requestState; | 163 DOMRequestState m_requestState; |
164 }; | 164 }; |
165 | 165 |
166 } // namespace WebCore | 166 } // namespace WebCore |
167 | 167 |
168 #endif // IDBRequest_h | 168 #endif // IDBRequest_h |
OLD | NEW |