| 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 20 matching lines...) Expand all Loading... |
| 31 #include "bindings/v8/IDBBindingUtilities.h" | 31 #include "bindings/v8/IDBBindingUtilities.h" |
| 32 #include "bindings/v8/ScriptState.h" | 32 #include "bindings/v8/ScriptState.h" |
| 33 #include "core/dom/DOMStringList.h" | 33 #include "core/dom/DOMStringList.h" |
| 34 #include "core/dom/ExceptionCode.h" | 34 #include "core/dom/ExceptionCode.h" |
| 35 #include "core/dom/ExecutionContext.h" | 35 #include "core/dom/ExecutionContext.h" |
| 36 #include "modules/indexeddb/IDBAny.h" | 36 #include "modules/indexeddb/IDBAny.h" |
| 37 #include "modules/indexeddb/IDBCursorWithValue.h" | 37 #include "modules/indexeddb/IDBCursorWithValue.h" |
| 38 #include "modules/indexeddb/IDBDatabase.h" | 38 #include "modules/indexeddb/IDBDatabase.h" |
| 39 #include "modules/indexeddb/IDBKeyPath.h" | 39 #include "modules/indexeddb/IDBKeyPath.h" |
| 40 #include "modules/indexeddb/IDBTracing.h" | 40 #include "modules/indexeddb/IDBTracing.h" |
| 41 #include "modules/indexeddb/IDBTransaction.h" | |
| 42 #include "modules/indexeddb/WebIDBCallbacksImpl.h" | 41 #include "modules/indexeddb/WebIDBCallbacksImpl.h" |
| 43 #include "platform/SharedBuffer.h" | 42 #include "platform/SharedBuffer.h" |
| 44 #include "public/platform/WebData.h" | 43 #include "public/platform/WebData.h" |
| 45 #include "public/platform/WebIDBKey.h" | 44 #include "public/platform/WebIDBKey.h" |
| 46 #include "public/platform/WebIDBKeyRange.h" | 45 #include "public/platform/WebIDBKeyRange.h" |
| 47 | 46 |
| 48 using blink::WebIDBDatabase; | 47 using blink::WebIDBDatabase; |
| 49 using blink::WebIDBCallbacks; | 48 using blink::WebIDBCallbacks; |
| 50 | 49 |
| 51 namespace WebCore { | 50 namespace WebCore { |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 } | 619 } |
| 621 return IDBIndexMetadata::InvalidId; | 620 return IDBIndexMetadata::InvalidId; |
| 622 } | 621 } |
| 623 | 622 |
| 624 WebIDBDatabase* IDBObjectStore::backendDB() const | 623 WebIDBDatabase* IDBObjectStore::backendDB() const |
| 625 { | 624 { |
| 626 return m_transaction->backendDB(); | 625 return m_transaction->backendDB(); |
| 627 } | 626 } |
| 628 | 627 |
| 629 } // namespace WebCore | 628 } // namespace WebCore |
| OLD | NEW |