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

Side by Side Diff: webkit/browser/appcache/manifest_parser.h

Issue 276093003: appcache content-type check (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 // This is a port of ManifestParser.h from WebKit/WebCore/loader/appcache. 5 // This is a port of ManifestParser.h from WebKit/WebCore/loader/appcache.
6 6
7 /* 7 /*
8 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 8 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 struct WEBKIT_STORAGE_BROWSER_EXPORT Manifest { 46 struct WEBKIT_STORAGE_BROWSER_EXPORT Manifest {
47 Manifest(); 47 Manifest();
48 ~Manifest(); 48 ~Manifest();
49 49
50 base::hash_set<std::string> explicit_urls; 50 base::hash_set<std::string> explicit_urls;
51 NamespaceVector intercept_namespaces; 51 NamespaceVector intercept_namespaces;
52 NamespaceVector fallback_namespaces; 52 NamespaceVector fallback_namespaces;
53 NamespaceVector online_whitelist_namespaces; 53 NamespaceVector online_whitelist_namespaces;
54 bool online_whitelist_all; 54 bool online_whitelist_all;
55 bool did_ignore_intercept_namespaces;
55 }; 56 };
56 57
57 WEBKIT_STORAGE_BROWSER_EXPORT bool ParseManifest(const GURL& manifest_url, 58 enum ParseMode {
58 const char* data, 59 PARSE_MANIFEST_PER_STANDARD,
59 int length, 60 PARSE_MANIFEST_ALLOWING_INTERCEPTS
60 Manifest& manifest); 61 };
62
63 WEBKIT_STORAGE_BROWSER_EXPORT bool ParseManifest(
64 const GURL& manifest_url,
65 const char* data,
66 int length,
67 ParseMode parse_mode,
68 Manifest& manifest);
61 69
62 } // namespace appcache 70 } // namespace appcache
63 71
64 #endif // WEBKIT_BROWSER_APPCACHE_MANIFEST_PARSER_H_ 72 #endif // WEBKIT_BROWSER_APPCACHE_MANIFEST_PARSER_H_
OLDNEW
« no previous file with comments | « webkit/browser/appcache/appcache_update_job.cc ('k') | webkit/browser/appcache/manifest_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698