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

Unified Diff: chrome/browser/webdata/web_intents_table.h

Issue 12543034: Move creation of the various WebDatabaseTable types out of WebDatabase. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Windows release builds (COMDAT folding combined static functions being used for keys. Created 7 years, 9 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 | « chrome/browser/webdata/web_database_table.cc ('k') | chrome/browser/webdata/web_intents_table.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/webdata/web_intents_table.h
diff --git a/chrome/browser/webdata/web_intents_table.h b/chrome/browser/webdata/web_intents_table.h
index 0064341b7a53fad2c3ff5bb9473a4995b3dac68f..8a8805d5c01c575961d809918bed300f8ecdcbf7 100644
--- a/chrome/browser/webdata/web_intents_table.h
+++ b/chrome/browser/webdata/web_intents_table.h
@@ -18,6 +18,7 @@ class MetaTable;
}
struct DefaultWebIntentService;
+class WebDatabase;
// TODO(thakis): Delete this class once there's a migration that drops the
// table backing it.
@@ -50,11 +51,15 @@ struct DefaultWebIntentService;
//
class WebIntentsTable : public WebDatabaseTable {
public:
- WebIntentsTable(sql::Connection* db, sql::MetaTable* meta_table);
+ WebIntentsTable();
virtual ~WebIntentsTable();
+ // Retrieves the WebIntentsTable* owned by |database|.
+ static WebIntentsTable* FromWebDatabase(WebDatabase* database);
+
// WebDatabaseTable implementation.
- virtual bool Init() OVERRIDE;
+ virtual WebDatabaseTable::TypeKey GetTypeKey() const OVERRIDE;
+ virtual bool Init(sql::Connection* db, sql::MetaTable* meta_table) OVERRIDE;
virtual bool IsSyncable() OVERRIDE;
virtual bool MigrateToVersion(int version,
const std::string& app_locale,
« no previous file with comments | « chrome/browser/webdata/web_database_table.cc ('k') | chrome/browser/webdata/web_intents_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698