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

Unified Diff: webkit/appcache/manifest_parser.h

Issue 3522004: FBTF: Move ctors/dtors into implementation files. Adds ctors/dtors to non-POD structs. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 3 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/manifest_parser.h
diff --git a/webkit/appcache/manifest_parser.h b/webkit/appcache/manifest_parser.h
index e9f80d978068eee47ac76f6ce33e424d1a89b49e..19d5cacdb525c3afda6cd29eb0ecf94edd6a8d02 100644
--- a/webkit/appcache/manifest_parser.h
+++ b/webkit/appcache/manifest_parser.h
@@ -44,12 +44,13 @@ namespace appcache {
typedef std::pair<GURL, GURL> FallbackNamespace;
struct Manifest {
+ Manifest();
+ ~Manifest();
+
base::hash_set<std::string> explicit_urls;
std::vector<FallbackNamespace> fallback_namespaces;
std::vector<GURL> online_whitelist_namespaces;
bool online_whitelist_all;
-
- Manifest() : online_whitelist_all(false) {}
};
bool ParseManifest(const GURL& manifest_url, const char* data, int length,

Powered by Google App Engine
This is Rietveld 408576698