| 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 21 matching lines...) Expand all Loading... |
| 32 #include "core/dom/ExceptionCode.h" | 32 #include "core/dom/ExceptionCode.h" |
| 33 #include "core/dom/ExecutionContext.h" | 33 #include "core/dom/ExecutionContext.h" |
| 34 #include "core/events/EventQueue.h" | 34 #include "core/events/EventQueue.h" |
| 35 #include "modules/IndexedDBNames.h" | 35 #include "modules/IndexedDBNames.h" |
| 36 #include "modules/indexeddb/IDBDatabase.h" | 36 #include "modules/indexeddb/IDBDatabase.h" |
| 37 #include "modules/indexeddb/IDBEventDispatcher.h" | 37 #include "modules/indexeddb/IDBEventDispatcher.h" |
| 38 #include "modules/indexeddb/IDBIndex.h" | 38 #include "modules/indexeddb/IDBIndex.h" |
| 39 #include "modules/indexeddb/IDBObjectStore.h" | 39 #include "modules/indexeddb/IDBObjectStore.h" |
| 40 #include "modules/indexeddb/IDBOpenDBRequest.h" | 40 #include "modules/indexeddb/IDBOpenDBRequest.h" |
| 41 #include "modules/indexeddb/IDBTracing.h" | 41 #include "modules/indexeddb/IDBTracing.h" |
| 42 #include "wtf/PtrUtil.h" | 42 #include "platform/wtf/PtrUtil.h" |
| 43 | 43 |
| 44 #include <memory> | 44 #include <memory> |
| 45 | 45 |
| 46 using blink::WebIDBDatabase; | 46 using blink::WebIDBDatabase; |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 IDBTransaction* IDBTransaction::CreateObserver( | 50 IDBTransaction* IDBTransaction::CreateObserver( |
| 51 ExecutionContext* execution_context, | 51 ExecutionContext* execution_context, |
| 52 int64_t id, | 52 int64_t id, |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 IDBObjectStore* object_store = it.key; | 598 IDBObjectStore* object_store = it.key; |
| 599 object_store->ClearIndexCache(); | 599 object_store->ClearIndexCache(); |
| 600 } | 600 } |
| 601 old_store_metadata_.Clear(); | 601 old_store_metadata_.Clear(); |
| 602 | 602 |
| 603 deleted_indexes_.Clear(); | 603 deleted_indexes_.Clear(); |
| 604 deleted_object_stores_.Clear(); | 604 deleted_object_stores_.Clear(); |
| 605 } | 605 } |
| 606 | 606 |
| 607 } // namespace blink | 607 } // namespace blink |
| OLD | NEW |