| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/webdata/web_apps_table.h" | 5 #include "chrome/browser/webdata/web_apps_table.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "chrome/browser/history/history_database.h" | 8 #include "chrome/browser/history/history_database.h" |
| 9 #include "chrome/browser/webdata/web_database.h" |
| 9 #include "googleurl/src/gurl.h" | 10 #include "googleurl/src/gurl.h" |
| 10 #include "sql/statement.h" | 11 #include "sql/statement.h" |
| 11 #include "third_party/skia/include/core/SkBitmap.h" | 12 #include "third_party/skia/include/core/SkBitmap.h" |
| 12 #include "ui/gfx/codec/png_codec.h" | 13 #include "ui/gfx/codec/png_codec.h" |
| 13 | 14 |
| 14 bool WebAppsTable::Init() { | 15 namespace { |
| 16 |
| 17 int table_key = 0; |
| 18 |
| 19 WebDatabaseTable::TypeKey GetKey() { |
| 20 return reinterpret_cast<void*>(&table_key); |
| 21 } |
| 22 |
| 23 } // namespace |
| 24 |
| 25 WebAppsTable* WebAppsTable::FromWebDatabase(WebDatabase* db) { |
| 26 return static_cast<WebAppsTable*>(db->GetTable(GetKey())); |
| 27 } |
| 28 |
| 29 WebDatabaseTable::TypeKey WebAppsTable::GetTypeKey() const { |
| 30 return GetKey(); |
| 31 } |
| 32 |
| 33 bool WebAppsTable::Init(sql::Connection* db, sql::MetaTable* meta_table) { |
| 34 WebDatabaseTable::Init(db, meta_table); |
| 35 |
| 15 return (InitWebAppIconsTable() && InitWebAppsTable()); | 36 return (InitWebAppIconsTable() && InitWebAppsTable()); |
| 16 } | 37 } |
| 17 | 38 |
| 18 bool WebAppsTable::IsSyncable() { | 39 bool WebAppsTable::IsSyncable() { |
| 19 return true; | 40 return true; |
| 20 } | 41 } |
| 21 | 42 |
| 22 bool WebAppsTable::MigrateToVersion(int version, | 43 bool WebAppsTable::MigrateToVersion(int version, |
| 23 const std::string& app_locale, | 44 const std::string& app_locale, |
| 24 bool* update_compatible_version) { | 45 bool* update_compatible_version) { |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 | 140 |
| 120 if (!delete_s.Run()) | 141 if (!delete_s.Run()) |
| 121 return false; | 142 return false; |
| 122 | 143 |
| 123 sql::Statement delete_s2(db_->GetUniqueStatement( | 144 sql::Statement delete_s2(db_->GetUniqueStatement( |
| 124 "DELETE FROM web_apps WHERE url = ?")); | 145 "DELETE FROM web_apps WHERE url = ?")); |
| 125 delete_s2.BindString(0, history::HistoryDatabase::GURLToDatabaseURL(url)); | 146 delete_s2.BindString(0, history::HistoryDatabase::GURLToDatabaseURL(url)); |
| 126 | 147 |
| 127 return delete_s2.Run(); | 148 return delete_s2.Run(); |
| 128 } | 149 } |
| OLD | NEW |