| 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 15 matching lines...) Expand all Loading... |
| 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 #include "config.h" | 29 #include "config.h" |
| 30 #include "modules/indexeddb/IDBRequest.h" | 30 #include "modules/indexeddb/IDBRequest.h" |
| 31 | 31 |
| 32 #include "bindings/v8/ExceptionState.h" | 32 #include "bindings/v8/ExceptionState.h" |
| 33 #include "bindings/v8/ExceptionStatePlaceholder.h" | 33 #include "bindings/v8/ExceptionStatePlaceholder.h" |
| 34 #include "bindings/v8/IDBBindingUtilities.h" | 34 #include "bindings/v8/IDBBindingUtilities.h" |
| 35 #include "core/dom/DOMError.h" | 35 #include "core/dom/DOMError.h" |
| 36 #include "core/events/EventListener.h" | 36 #include "core/dom/EventListener.h" |
| 37 #include "core/events/EventNames.h" | 37 #include "core/dom/EventNames.h" |
| 38 #include "core/events/EventQueue.h" | 38 #include "core/dom/EventQueue.h" |
| 39 #include "core/dom/ScriptExecutionContext.h" | 39 #include "core/dom/ScriptExecutionContext.h" |
| 40 #include "core/platform/SharedBuffer.h" | 40 #include "core/platform/SharedBuffer.h" |
| 41 #include "modules/indexeddb/IDBCursorBackendInterface.h" | 41 #include "modules/indexeddb/IDBCursorBackendInterface.h" |
| 42 #include "modules/indexeddb/IDBCursorWithValue.h" | 42 #include "modules/indexeddb/IDBCursorWithValue.h" |
| 43 #include "modules/indexeddb/IDBDatabase.h" | 43 #include "modules/indexeddb/IDBDatabase.h" |
| 44 #include "modules/indexeddb/IDBEventDispatcher.h" | 44 #include "modules/indexeddb/IDBEventDispatcher.h" |
| 45 #include "modules/indexeddb/IDBTracing.h" | 45 #include "modules/indexeddb/IDBTracing.h" |
| 46 #include "modules/indexeddb/IDBTransaction.h" | 46 #include "modules/indexeddb/IDBTransaction.h" |
| 47 | 47 |
| 48 namespace WebCore { | 48 namespace WebCore { |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 { | 541 { |
| 542 return &m_eventTargetData; | 542 return &m_eventTargetData; |
| 543 } | 543 } |
| 544 | 544 |
| 545 EventTargetData* IDBRequest::ensureEventTargetData() | 545 EventTargetData* IDBRequest::ensureEventTargetData() |
| 546 { | 546 { |
| 547 return &m_eventTargetData; | 547 return &m_eventTargetData; |
| 548 } | 548 } |
| 549 | 549 |
| 550 } // namespace WebCore | 550 } // namespace WebCore |
| OLD | NEW |