| Index: sql/statement.h
|
| diff --git a/sql/statement.h b/sql/statement.h
|
| index e192e60725192b2f44b174c48c26911898b73877..b411e809b6ca9cee8f6792cb7135db81f2d6fc92 100644
|
| --- a/sql/statement.h
|
| +++ b/sql/statement.h
|
| @@ -5,10 +5,11 @@
|
| #ifndef SQL_STATEMENT_H_
|
| #define SQL_STATEMENT_H_
|
|
|
| +#include <stdint.h>
|
| #include <string>
|
| #include <vector>
|
|
|
| -#include "base/basictypes.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/strings/string16.h"
|
| #include "sql/connection.h"
|
| @@ -104,7 +105,7 @@ class SQL_EXPORT Statement {
|
| bool BindNull(int col);
|
| bool BindBool(int col, bool val);
|
| bool BindInt(int col, int val);
|
| - bool BindInt64(int col, int64 val);
|
| + bool BindInt64(int col, int64_t val);
|
| bool BindDouble(int col, double val);
|
| bool BindCString(int col, const char* val);
|
| bool BindString(int col, const std::string& val);
|
| @@ -128,7 +129,7 @@ class SQL_EXPORT Statement {
|
| // These all take a 0-based argument index.
|
| bool ColumnBool(int col) const;
|
| int ColumnInt(int col) const;
|
| - int64 ColumnInt64(int col) const;
|
| + int64_t ColumnInt64(int col) const;
|
| double ColumnDouble(int col) const;
|
| std::string ColumnString(int col) const;
|
| base::string16 ColumnString16(int col) const;
|
|
|