| 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 13 matching lines...) Expand all Loading... |
| 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #ifndef IDBRequest_h | 29 #ifndef IDBRequest_h |
| 30 #define IDBRequest_h | 30 #define IDBRequest_h |
| 31 | 31 |
| 32 #include <memory> | 32 #include <memory> |
| 33 | 33 |
| 34 #include "bindings/core/v8/ScriptState.h" | |
| 35 #include "bindings/core/v8/ScriptValue.h" | 34 #include "bindings/core/v8/ScriptValue.h" |
| 36 #include "core/dom/DOMStringList.h" | 35 #include "core/dom/DOMStringList.h" |
| 37 #include "core/dom/SuspendableObject.h" | 36 #include "core/dom/SuspendableObject.h" |
| 38 #include "core/events/EventListener.h" | 37 #include "core/events/EventListener.h" |
| 39 #include "core/events/EventTarget.h" | 38 #include "core/events/EventTarget.h" |
| 40 #include "modules/EventModules.h" | 39 #include "modules/EventModules.h" |
| 41 #include "modules/ModulesExport.h" | 40 #include "modules/ModulesExport.h" |
| 42 #include "modules/indexeddb/IDBAny.h" | 41 #include "modules/indexeddb/IDBAny.h" |
| 43 #include "modules/indexeddb/IDBTransaction.h" | 42 #include "modules/indexeddb/IDBTransaction.h" |
| 44 #include "modules/indexeddb/IndexedDB.h" | 43 #include "modules/indexeddb/IndexedDB.h" |
| 45 #include "platform/bindings/ActiveScriptWrappable.h" | 44 #include "platform/bindings/ActiveScriptWrappable.h" |
| 45 #include "platform/bindings/ScriptState.h" |
| 46 #include "platform/blob/BlobData.h" | 46 #include "platform/blob/BlobData.h" |
| 47 #include "platform/heap/Handle.h" | 47 #include "platform/heap/Handle.h" |
| 48 #include "platform/wtf/HashMap.h" | 48 #include "platform/wtf/HashMap.h" |
| 49 #include "public/platform/WebBlobInfo.h" | 49 #include "public/platform/WebBlobInfo.h" |
| 50 #include "public/platform/modules/indexeddb/WebIDBCursor.h" | 50 #include "public/platform/modules/indexeddb/WebIDBCursor.h" |
| 51 #include "public/platform/modules/indexeddb/WebIDBTypes.h" | 51 #include "public/platform/modules/indexeddb/WebIDBTypes.h" |
| 52 | 52 |
| 53 namespace blink { | 53 namespace blink { |
| 54 | 54 |
| 55 class DOMException; | 55 class DOMException; |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 bool did_throw_in_event_handler_ = false; | 209 bool did_throw_in_event_handler_ = false; |
| 210 | 210 |
| 211 // Pointer back to the WebIDBCallbacks that holds a persistent reference to | 211 // Pointer back to the WebIDBCallbacks that holds a persistent reference to |
| 212 // this object. | 212 // this object. |
| 213 WebIDBCallbacks* web_callbacks_ = nullptr; | 213 WebIDBCallbacks* web_callbacks_ = nullptr; |
| 214 }; | 214 }; |
| 215 | 215 |
| 216 } // namespace blink | 216 } // namespace blink |
| 217 | 217 |
| 218 #endif // IDBRequest_h | 218 #endif // IDBRequest_h |
| OLD | NEW |