Changeset 117341 in webkit


Ignore:
Timestamp:
May 16, 2012 2:14:39 PM (12 years ago)
Author:
jsbell@chromium.org
Message:

[Chromium] IndexedDB: WebKit API for IDBObjectStore.autoIncrement property
https://bugs.webkit.org/show_bug.cgi?id=86661

Reviewed by Dimitri Glazkov.

  • public/WebIDBObjectStore.h:

(WebKit::WebIDBObjectStore::autoIncrement):

Location:
trunk/Source/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r117327 r117341  
     12012-05-16  Joshua Bell  <jsbell@chromium.org>
     2
     3        [Chromium] IndexedDB: WebKit API for IDBObjectStore.autoIncrement property
     4        https://bugs.webkit.org/show_bug.cgi?id=86661
     5
     6        Reviewed by Dimitri Glazkov.
     7
     8        * public/WebIDBObjectStore.h:
     9        (WebKit::WebIDBObjectStore::autoIncrement):
     10
    1112012-05-16  Varun Jain  <varunjain@google.com>
    212
  • trunk/Source/WebKit/chromium/public/WebIDBObjectStore.h

    r115339 r117341  
    6464        return WebDOMStringList();
    6565    }
     66    virtual bool autoIncrement() const
     67    {
     68        WEBKIT_ASSERT_NOT_REACHED();
     69        return false;
     70    }
    6671
    6772    virtual void get(const WebIDBKeyRange&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
Note: See TracChangeset for help on using the changeset viewer.