Changeset 142008 in webkit


Ignore:
Timestamp:
Feb 6, 2013 10:44:54 AM (11 years ago)
Author:
alecflett@chromium.org
Message:

IndexedDB: Stub out SharedBuffer version of put()
https://bugs.webkit.org/show_bug.cgi?id=108986

Reviewed by Darin Fisher.

This is part 1 of 3 to replace Vector<uint8_t> with SharedBuffer.

  • public/WebIDBDatabase.h:

(WebKit):
(WebKit::WebIDBDatabase::put):

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

Legend:

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

    r141997 r142008  
     12013-02-06  Alec Flett  <alecflett@chromium.org>
     2
     3        IndexedDB: Stub out SharedBuffer version of put()
     4        https://bugs.webkit.org/show_bug.cgi?id=108986
     5
     6        Reviewed by Darin Fisher.
     7
     8        This is part 1 of 3 to replace Vector<uint8_t> with SharedBuffer.
     9
     10        * public/WebIDBDatabase.h:
     11        (WebKit):
     12        (WebKit::WebIDBDatabase::put):
     13
    1142013-02-06  Stephen Chenney  <schenney@chromium.org>
    215
  • trunk/Source/WebKit/chromium/public/WebIDBDatabase.h

    r141523 r142008  
    3434namespace WebKit {
    3535
     36class WebData;
    3637class WebFrame;
    3738class WebIDBCallbacks;
     
    7677    // Note that 'value' may be consumed/adopted by this call.
    7778    virtual void put(long long transactionId, long long objectStoreId, WebVector<unsigned char>* value, const WebIDBKey&, PutMode, WebIDBCallbacks*, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { WEBKIT_ASSERT_NOT_REACHED(); }
     79    virtual void put(long long transactionId, long long objectStoreId, const WebData& value, const WebIDBKey&, PutMode, WebIDBCallbacks*, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { WEBKIT_ASSERT_NOT_REACHED(); }
    7880    virtual void setIndexKeys(long long transactionId, long long objectStoreId, const WebIDBKey&, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { WEBKIT_ASSERT_NOT_REACHED(); }
    7981    virtual void setIndexesReady(long long transactionId, long long objectStoreId, const WebVector<long long>& indexIds) { WEBKIT_ASSERT_NOT_REACHED(); }
Note: See TracChangeset for help on using the changeset viewer.