HomeSort by relevance Sort by last modified time
    Searched defs:Transaction (Results 1 - 14 of 14) sorted by null

  /external/chromium/app/sql/
transaction.cc 5 #include "app/sql/transaction.h"
12 Transaction::Transaction(Connection* connection)
17 Transaction::~Transaction() {
22 bool Transaction::Begin() {
24 NOTREACHED() << "Beginning a transaction twice!";
31 void Transaction::Rollback() {
33 NOTREACHED() << "Attempting to roll back a nonexistent transaction. "
41 bool Transaction::Commit()
    [all...]
transaction.h 15 class Transaction {
17 // Creates the scoped transaction object. You MUST call Begin() to begin the
18 // transaction. If you have begun a transaction and not committed it, the
19 // constructor will roll back the transaction. If you want to commit, you
21 explicit Transaction(Connection* connection);
22 ~Transaction();
24 // Returns true when there is a transaction that has been successfully begun.
27 // Begins the transaction. This uses the default sqlite "deferred" transaction
    [all...]
  /external/webkit/Source/WebCore/storage/
IDBBackingStore.h 101 class Transaction : public RefCounted<Transaction> {
107 virtual PassRefPtr<Transaction> createTransaction() = 0;