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

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLStatement.h 48 class SQLStatement : public AbstractSQLStatement {
50 static PassOwnPtr<SQLStatement> create(Database*,
61 SQLStatement(Database*, PassOwnPtr<SQLStatementCallback>, PassOwnPtr<SQLStatementErrorCallback>);
63 // The AbstractSQLStatementBackend owns the SQLStatement. Hence, the backend is
64 // guaranteed to be outlive the SQLStatement, and it is safe for us to refer
SQLStatement.cpp 29 #include "modules/webdatabase/SQLStatement.h"
45 PassOwnPtr<SQLStatement> SQLStatement::create(Database* database,
48 return adoptPtr(new SQLStatement(database, callback, errorCallback));
51 SQLStatement::SQLStatement(Database* database, PassOwnPtr<SQLStatementCallback> callback,
58 void SQLStatement::setBackend(AbstractSQLStatementBackend* backend)
63 bool SQLStatement::hasCallback()
68 bool SQLStatement::hasErrorCallback()
73 bool SQLStatement::performCallback(SQLTransaction* transaction
    [all...]
  /external/chromium/chrome/common/
sqlite_utils.h 24 class SQLStatement;
229 class SQLStatement : public scoped_sqlite3_stmt_ptr {
231 SQLStatement() {}
342 DISALLOW_COPY_AND_ASSIGN(SQLStatement);

Completed in 35 milliseconds