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

Unified Diff: webkit/appcache/appcache_database.cc

Issue 6366019: Part 1 of repairing regressions to my old clang check plugins so Nico can (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove Nico's changes that I patched in for testing. Created 9 years, 11 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
Index: webkit/appcache/appcache_database.cc
diff --git a/webkit/appcache/appcache_database.cc b/webkit/appcache/appcache_database.cc
index a4fbefe66deeb6d494397d231a8336e7cce31777..0c7f168613f2e8b1a50a2c363ebd5cff459118ec 100644
--- a/webkit/appcache/appcache_database.cc
+++ b/webkit/appcache/appcache_database.cc
@@ -145,10 +145,23 @@ sql::ErrorDelegate* GetErrorHandlerForAppCacheDb() {
} // anon namespace
-
// AppCacheDatabase ----------------------------------------------------------
namespace appcache {
+AppCacheDatabase::GroupRecord::GroupRecord()
+ : group_id(0) {
+}
+
+AppCacheDatabase::GroupRecord::~GroupRecord() {
+}
+
+AppCacheDatabase::FallbackNameSpaceRecord::FallbackNameSpaceRecord()
+ : cache_id(0) {
+}
+
+AppCacheDatabase::FallbackNameSpaceRecord::~FallbackNameSpaceRecord() {
+}
+
AppCacheDatabase::AppCacheDatabase(const FilePath& path)
: db_file_path_(path), is_disabled_(false), is_recreating_(false) {
}

Powered by Google App Engine
This is Rietveld 408576698