Changeset 90287 in webkit


Ignore:
Timestamp:
Jul 1, 2011, 3:30:00 PM (14 years ago)
Author:
hans@chromium.org
Message:

2011-07-01 Hans Wennborg <hans@chromium.org>

IndexedDB: make LevelDB the default back-end
https://bugs.webkit.org/show_bug.cgi?id=63817

Reviewed by Tony Chang.

Disable IndexedDB quota teset since quota enforcement is not yet
supported by the LevelDB back-end.

  • platform/chromium/test_expectations.txt:

2011-07-01 Hans Wennborg <hans@chromium.org>

IndexedDB: make LevelDB the default back-end
https://bugs.webkit.org/show_bug.cgi?id=63817

Reviewed by Tony Chang.

Use LevelDB as the default back-end.

Covered by existing layout tests for indexeddb, which will now be
using the LevelDB back-end.

  • src/WebIDBFactoryImpl.cpp: (WebKit::WebIDBFactoryImpl::open):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r90286 r90287  
     12011-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
    1132011-07-01  Mihai Parparita  <mihaip@chromium.org>
    214
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r90274 r90287  
    40774077BUGCR88230 VISTA : fast/dom/dom-parse-serialize-display.html = PASS TIMEOUT
    40784078BUGCR88232 WIN DEBUG : fast/dom/non-numeric-values-numeric-parameters.html = CRASH PASS
     4079
     4080// Quota enforcement not yet implemented for LevelDB back-end.
     4081BUGCR83652 : storage/indexeddb/database-quota.html = TEXT
  • trunk/Source/WebKit/chromium/ChangeLog

    r90275 r90287  
     12011-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
    1162011-07-01  Ryosuke Niwa  <rniwa@webkit.org>
    217
  • trunk/Source/WebKit/chromium/src/WebIDBFactoryImpl.cpp

    r90137 r90287  
    8282
    8383    if (backingStoreType == DefaultBackingStore)
    84         backingStoreType = SQLiteBackingStore;
     84        backingStoreType = LevelDBBackingStore;
    8585
    8686    if (dataDir.isEmpty() && backingStoreType == LevelDBBackingStore) {
Note: See TracChangeset for help on using the changeset viewer.