Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Unified Diff: sql/statement.h

Issue 1133053004: sql: Remove basictypes.h includes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sql/recovery.h ('k') | sql/statement.cc » ('j') | sql/statement.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « sql/recovery.h ('k') | sql/statement.cc » ('j') | sql/statement.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698