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

Side by Side Diff: Source/modules/indexeddb/IDBRequest.cpp

Issue 26558004: Revert 158219 "Move dom/*Event* to events to match the DOM vs. E..." (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/1651/
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/modules/indexeddb/IDBRequest.h ('k') | Source/modules/indexeddb/IDBTransaction.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 15 matching lines...) Expand all
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
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
OLDNEW
« no previous file with comments | « Source/modules/indexeddb/IDBRequest.h ('k') | Source/modules/indexeddb/IDBTransaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698