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

Unified Diff: sql/meta_table.h

Issue 1133053004: sql: Remove basictypes.h includes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: shess review 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/connection_unittest.cc ('k') | sql/meta_table.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/meta_table.h
diff --git a/sql/meta_table.h b/sql/meta_table.h
index 918a2614ac82d17f2662df194324407cb2fdf428..0ae76bd23e7afaf5cfcffcd1299b5963f8039ef9 100644
--- a/sql/meta_table.h
+++ b/sql/meta_table.h
@@ -5,9 +5,10 @@
#ifndef SQL_META_TABLE_H_
#define SQL_META_TABLE_H_
+#include <stdint.h>
#include <string>
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "sql/sql_export.h"
namespace sql {
@@ -74,13 +75,13 @@ class SQL_EXPORT MetaTable {
// Set the given arbitrary key with the given data. Returns true on success.
bool SetValue(const char* key, const std::string& value);
bool SetValue(const char* key, int value);
- bool SetValue(const char* key, int64 value);
+ bool SetValue(const char* key, int64_t value);
// Retrieves the value associated with the given key. This will use sqlite's
// type conversion rules. It will return true on success.
bool GetValue(const char* key, std::string* value);
bool GetValue(const char* key, int* value);
- bool GetValue(const char* key, int64* value);
+ bool GetValue(const char* key, int64_t* value);
// Deletes the key from the table.
bool DeleteKey(const char* key);
« no previous file with comments | « sql/connection_unittest.cc ('k') | sql/meta_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698