| 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 24 matching lines...) Expand all Loading... |
| 35 #include "modules/EventTargetModules.h" | 35 #include "modules/EventTargetModules.h" |
| 36 #include "modules/ModulesExport.h" | 36 #include "modules/ModulesExport.h" |
| 37 #include "modules/indexeddb/IDBDatabaseCallbacks.h" | 37 #include "modules/indexeddb/IDBDatabaseCallbacks.h" |
| 38 #include "modules/indexeddb/IDBHistograms.h" | 38 #include "modules/indexeddb/IDBHistograms.h" |
| 39 #include "modules/indexeddb/IDBMetadata.h" | 39 #include "modules/indexeddb/IDBMetadata.h" |
| 40 #include "modules/indexeddb/IDBObjectStore.h" | 40 #include "modules/indexeddb/IDBObjectStore.h" |
| 41 #include "modules/indexeddb/IDBObjectStoreParameters.h" | 41 #include "modules/indexeddb/IDBObjectStoreParameters.h" |
| 42 #include "modules/indexeddb/IDBTransaction.h" | 42 #include "modules/indexeddb/IDBTransaction.h" |
| 43 #include "modules/indexeddb/IndexedDB.h" | 43 #include "modules/indexeddb/IndexedDB.h" |
| 44 #include "platform/heap/Handle.h" | 44 #include "platform/heap/Handle.h" |
| 45 #include "platform/wtf/PassRefPtr.h" |
| 46 #include "platform/wtf/RefPtr.h" |
| 45 #include "public/platform/modules/indexeddb/WebIDBDatabase.h" | 47 #include "public/platform/modules/indexeddb/WebIDBDatabase.h" |
| 46 #include "wtf/PassRefPtr.h" | |
| 47 #include "wtf/RefPtr.h" | |
| 48 | 48 |
| 49 #include <memory> | 49 #include <memory> |
| 50 | 50 |
| 51 namespace blink { | 51 namespace blink { |
| 52 | 52 |
| 53 class DOMException; | 53 class DOMException; |
| 54 class ExceptionState; | 54 class ExceptionState; |
| 55 class ExecutionContext; | 55 class ExecutionContext; |
| 56 class IDBObserver; | 56 class IDBObserver; |
| 57 struct WebIDBObservation; | 57 struct WebIDBObservation; |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 | 203 |
| 204 Member<IDBDatabaseCallbacks> database_callbacks_; | 204 Member<IDBDatabaseCallbacks> database_callbacks_; |
| 205 // Maintain the isolate so that all externally allocated memory can be | 205 // Maintain the isolate so that all externally allocated memory can be |
| 206 // registered against it. | 206 // registered against it. |
| 207 v8::Isolate* isolate_; | 207 v8::Isolate* isolate_; |
| 208 }; | 208 }; |
| 209 | 209 |
| 210 } // namespace blink | 210 } // namespace blink |
| 211 | 211 |
| 212 #endif // IDBDatabase_h | 212 #endif // IDBDatabase_h |
| OLD | NEW |