Changeset 90287 in webkit
- Timestamp:
- Jul 1, 2011, 3:30:00 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r90286 r90287 1 2011-07-01 Hans Wennborg <hans@chromium.org> 2 3 IndexedDB: make LevelDB the default back-end 4 https://bugs.webkit.org/show_bug.cgi?id=63817 5 6 Reviewed by Tony Chang. 7 8 Disable IndexedDB quota teset since quota enforcement is not yet 9 supported by the LevelDB back-end. 10 11 * platform/chromium/test_expectations.txt: 12 1 13 2011-07-01 Mihai Parparita <mihaip@chromium.org> 2 14 -
trunk/LayoutTests/platform/chromium/test_expectations.txt
r90274 r90287 4077 4077 BUGCR88230 VISTA : fast/dom/dom-parse-serialize-display.html = PASS TIMEOUT 4078 4078 BUGCR88232 WIN DEBUG : fast/dom/non-numeric-values-numeric-parameters.html = CRASH PASS 4079 4080 // Quota enforcement not yet implemented for LevelDB back-end. 4081 BUGCR83652 : storage/indexeddb/database-quota.html = TEXT -
trunk/Source/WebKit/chromium/ChangeLog
r90275 r90287 1 2011-07-01 Hans Wennborg <hans@chromium.org> 2 3 IndexedDB: make LevelDB the default back-end 4 https://bugs.webkit.org/show_bug.cgi?id=63817 5 6 Reviewed by Tony Chang. 7 8 Use LevelDB as the default back-end. 9 10 Covered by existing layout tests for indexeddb, which will now be 11 using the LevelDB back-end. 12 13 * src/WebIDBFactoryImpl.cpp: 14 (WebKit::WebIDBFactoryImpl::open): 15 1 16 2011-07-01 Ryosuke Niwa <rniwa@webkit.org> 2 17 -
trunk/Source/WebKit/chromium/src/WebIDBFactoryImpl.cpp
r90137 r90287 82 82 83 83 if (backingStoreType == DefaultBackingStore) 84 backingStoreType = SQLiteBackingStore;84 backingStoreType = LevelDBBackingStore; 85 85 86 86 if (dataDir.isEmpty() && backingStoreType == LevelDBBackingStore) {
Note:
See TracChangeset
for help on using the changeset viewer.