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

Unified Diff: content/browser/appcache/appcache_manifest_parser.cc

Issue 548373002: Rename AppCache's Manifest to AppCacheManifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: content/browser/appcache/appcache_manifest_parser.cc
diff --git a/content/browser/appcache/appcache_manifest_parser.cc b/content/browser/appcache/appcache_manifest_parser.cc
index cc6131cf076a1f337595f437655cbaeb6cc96b26..99f5e87f379222902297e58ff57cd97998ca0efa 100644
--- a/content/browser/appcache/appcache_manifest_parser.cc
+++ b/content/browser/appcache/appcache_manifest_parser.cc
@@ -70,15 +70,15 @@ enum InterceptVerb {
UNKNOWN_VERB,
};
-Manifest::Manifest()
+AppCacheManifest::AppCacheManifest()
: online_whitelist_all(false),
did_ignore_intercept_namespaces(false) {
}
-Manifest::~Manifest() {}
+AppCacheManifest::~AppCacheManifest() {}
bool ParseManifest(const GURL& manifest_url, const char* data, int length,
- ParseMode parse_mode, Manifest& manifest) {
+ ParseMode parse_mode, AppCacheManifest& manifest) {
// This is an implementation of the parsing algorithm specified in
// the HTML5 offline web application docs:
// http://www.w3.org/TR/html5/offline.html
« no previous file with comments | « content/browser/appcache/appcache_manifest_parser.h ('k') | content/browser/appcache/appcache_manifest_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698