| 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 18 matching lines...) Expand all Loading... |
| 29 #include "bindings/core/v8/ScriptWrappable.h" | 29 #include "bindings/core/v8/ScriptWrappable.h" |
| 30 #include "bindings/core/v8/SerializedScriptValue.h" | 30 #include "bindings/core/v8/SerializedScriptValue.h" |
| 31 #include "modules/indexeddb/IDBCursor.h" | 31 #include "modules/indexeddb/IDBCursor.h" |
| 32 #include "modules/indexeddb/IDBIndex.h" | 32 #include "modules/indexeddb/IDBIndex.h" |
| 33 #include "modules/indexeddb/IDBIndexParameters.h" | 33 #include "modules/indexeddb/IDBIndexParameters.h" |
| 34 #include "modules/indexeddb/IDBKey.h" | 34 #include "modules/indexeddb/IDBKey.h" |
| 35 #include "modules/indexeddb/IDBKeyRange.h" | 35 #include "modules/indexeddb/IDBKeyRange.h" |
| 36 #include "modules/indexeddb/IDBMetadata.h" | 36 #include "modules/indexeddb/IDBMetadata.h" |
| 37 #include "modules/indexeddb/IDBRequest.h" | 37 #include "modules/indexeddb/IDBRequest.h" |
| 38 #include "modules/indexeddb/IDBTransaction.h" | 38 #include "modules/indexeddb/IDBTransaction.h" |
| 39 #include "platform/wtf/RefPtr.h" |
| 40 #include "platform/wtf/text/WTFString.h" |
| 39 #include "public/platform/modules/indexeddb/WebIDBCursor.h" | 41 #include "public/platform/modules/indexeddb/WebIDBCursor.h" |
| 40 #include "public/platform/modules/indexeddb/WebIDBDatabase.h" | 42 #include "public/platform/modules/indexeddb/WebIDBDatabase.h" |
| 41 #include "public/platform/modules/indexeddb/WebIDBTypes.h" | 43 #include "public/platform/modules/indexeddb/WebIDBTypes.h" |
| 42 #include "wtf/RefPtr.h" | |
| 43 #include "wtf/text/WTFString.h" | |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 class DOMStringList; | 47 class DOMStringList; |
| 48 class IDBAny; | 48 class IDBAny; |
| 49 class ExceptionState; | 49 class ExceptionState; |
| 50 | 50 |
| 51 class IDBObjectStore final : public GarbageCollectedFinalized<IDBObjectStore>, | 51 class IDBObjectStore final : public GarbageCollectedFinalized<IDBObjectStore>, |
| 52 public ScriptWrappable { | 52 public ScriptWrappable { |
| 53 DEFINE_WRAPPERTYPEINFO(); | 53 DEFINE_WRAPPERTYPEINFO(); |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 IDBIndexMap index_map_; | 217 IDBIndexMap index_map_; |
| 218 | 218 |
| 219 #if DCHECK_IS_ON() | 219 #if DCHECK_IS_ON() |
| 220 bool clear_index_cache_called_ = false; | 220 bool clear_index_cache_called_ = false; |
| 221 #endif // DCHECK_IS_ON() | 221 #endif // DCHECK_IS_ON() |
| 222 }; | 222 }; |
| 223 | 223 |
| 224 } // namespace blink | 224 } // namespace blink |
| 225 | 225 |
| 226 #endif // IDBObjectStore_h | 226 #endif // IDBObjectStore_h |
| OLD | NEW |