| Index: content/browser/appcache/appcache_database.cc
|
| diff --git a/content/browser/appcache/appcache_database.cc b/content/browser/appcache/appcache_database.cc
|
| index f0d68e0829c6e02978c5cf875f2b0e487f9ac92b..3e502813a1b73c32ce795cde8e23b0c37fc7be7f 100644
|
| --- a/content/browser/appcache/appcache_database.cc
|
| +++ b/content/browser/appcache/appcache_database.cc
|
| @@ -153,8 +153,8 @@ const IndexInfo kIndexes[] = {
|
| true },
|
| };
|
|
|
| -const int kTableCount = ARRAYSIZE_UNSAFE(kTables);
|
| -const int kIndexCount = ARRAYSIZE_UNSAFE(kIndexes);
|
| +const int kTableCount = arraysize(kTables);
|
| +const int kIndexCount = arraysize(kIndexes);
|
|
|
| bool CreateTable(sql::Connection* db, const TableInfo& info) {
|
| std::string sql("CREATE TABLE ");
|
|
|