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

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransaction.h 53 class SQLTransaction : public SQLTransactionStateMachine<SQLTransaction>, public AbstractSQLTransaction, public ScriptWrappable {
55 static PassRefPtr<SQLTransaction> create(Database*, PassRefPtr<SQLTransactionCallback>,
67 SQLTransaction(Database*, PassRefPtr<SQLTransactionCallback>,
SQLTransaction.cpp 30 #include "modules/webdatabase/SQLTransaction.h"
51 PassRefPtr<SQLTransaction> SQLTransaction::create(Database* db, PassRefPtr<SQLTransactionCallback> callback,
55 return adoptRef(new SQLTransaction(db, callback, successCallback, errorCallback, readOnly));
58 SQLTransaction::SQLTransaction(Database* db, PassRefPtr<SQLTransactionCallback> callback,
72 bool SQLTransaction::hasCallback() const
77 bool SQLTransaction::hasSuccessCallback() const
82 bool SQLTransaction::hasErrorCallback() const
87 void SQLTransaction::setBackend(AbstractSQLTransactionBackend* backend
    [all...]
  /external/chromium/chrome/common/
sqlite_utils.cc 167 SQLTransaction::SQLTransaction(sqlite3* db) : db_(db), began_(false) {
170 SQLTransaction::~SQLTransaction() {
176 int SQLTransaction::BeginCommand(const char* command) {
185 int SQLTransaction::EndCommand(const char* command) {
204 : SQLTransaction(site->GetSqlite3DB()),
sqlite_utils.h 20 class SQLTransaction;
56 class SQLTransaction {
58 explicit SQLTransaction(sqlite3* db);
59 virtual ~SQLTransaction();
99 DISALLOW_COPY_AND_ASSIGN(SQLTransaction);
154 // attempt to open a non-nested transaction (class SQLTransaction) will fail.
160 class SQLNestedTransaction : public SQLTransaction {

Completed in 412 milliseconds