Changeset 138914 in webkit


Ignore:
Timestamp:
Jan 5, 2013 6:45:36 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

IndexedDB: Replace int64 with int64_t
https://bugs.webkit.org/show_bug.cgi?id=106189

Patch by Michael Pruett <michael@68k.org> on 2013-01-05
Reviewed by Sam Weinig.

Cleaning up coding inconsistencies, no change in behavior.

Tests: storage/indexeddb/*

  • Modules/indexeddb/IDBDatabaseBackendImpl.cpp:

(WebCore::GetOperation::create):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r138909 r138914  
     12013-01-05  Michael Pruett  <michael@68k.org>
     2
     3        IndexedDB: Replace int64 with int64_t
     4        https://bugs.webkit.org/show_bug.cgi?id=106189
     5
     6        Reviewed by Sam Weinig.
     7
     8        Cleaning up coding inconsistencies, no change in behavior.
     9
     10        Tests: storage/indexeddb/*
     11
     12        * Modules/indexeddb/IDBDatabaseBackendImpl.cpp:
     13        (WebCore::GetOperation::create):
     14
    1152013-01-05  Elliott Sprehn  <esprehn@chromium.org>
    216
  • trunk/Source/WebCore/Modules/indexeddb/IDBDatabaseBackendImpl.cpp

    r138900 r138914  
    159159class GetOperation : public IDBTransactionBackendImpl::Operation {
    160160public:
    161     static PassOwnPtr<IDBTransactionBackendImpl::Operation> create(PassRefPtr<IDBBackingStore> backingStore, const IDBDatabaseMetadata& metadata, int64 objectStoreId, int64 indexId, PassRefPtr<IDBKeyRange> keyRange, IDBCursorBackendInterface::CursorType cursorType, PassRefPtr<IDBCallbacks> callbacks)
     161    static PassOwnPtr<IDBTransactionBackendImpl::Operation> create(PassRefPtr<IDBBackingStore> backingStore, const IDBDatabaseMetadata& metadata, int64_t objectStoreId, int64_t indexId, PassRefPtr<IDBKeyRange> keyRange, IDBCursorBackendInterface::CursorType cursorType, PassRefPtr<IDBCallbacks> callbacks)
    162162    {
    163163        return adoptPtr(new GetOperation(backingStore, metadata, objectStoreId, indexId, keyRange, cursorType, callbacks));
Note: See TracChangeset for help on using the changeset viewer.