| OLD | NEW |
| 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 19 matching lines...) Expand all Loading... |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 #ifndef WEBKIT_APPCACHE_MANIFEST_PARSER_H_ | 32 #ifndef WEBKIT_APPCACHE_MANIFEST_PARSER_H_ |
| 33 #define WEBKIT_APPCACHE_MANIFEST_PARSER_H_ | 33 #define WEBKIT_APPCACHE_MANIFEST_PARSER_H_ |
| 34 | 34 |
| 35 #include <string> | 35 #include <string> |
| 36 #include <vector> | 36 #include <vector> |
| 37 | 37 |
| 38 #include "base/hash_tables.h" | 38 #include "base/hash_tables.h" |
| 39 #include "webkit/appcache/appcache_export.h" | 39 #include "webkit/appcache/appcache_export.h" |
| 40 #include "webkit/appcache/appcache_interfaces.h" |
| 40 | 41 |
| 41 class GURL; | 42 class GURL; |
| 42 | 43 |
| 43 namespace appcache { | 44 namespace appcache { |
| 44 | 45 |
| 45 typedef std::pair<GURL, GURL> FallbackNamespace; | |
| 46 | |
| 47 struct APPCACHE_EXPORT Manifest { | 46 struct APPCACHE_EXPORT Manifest { |
| 48 Manifest(); | 47 Manifest(); |
| 49 ~Manifest(); | 48 ~Manifest(); |
| 50 | 49 |
| 51 base::hash_set<std::string> explicit_urls; | 50 base::hash_set<std::string> explicit_urls; |
| 52 std::vector<FallbackNamespace> fallback_namespaces; | 51 NamespaceVector intercept_namespaces; |
| 52 NamespaceVector fallback_namespaces; |
| 53 std::vector<GURL> online_whitelist_namespaces; | 53 std::vector<GURL> online_whitelist_namespaces; |
| 54 bool online_whitelist_all; | 54 bool online_whitelist_all; |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 APPCACHE_EXPORT bool ParseManifest(const GURL& manifest_url, | 57 APPCACHE_EXPORT bool ParseManifest(const GURL& manifest_url, |
| 58 const char* data, | 58 const char* data, |
| 59 int length, | 59 int length, |
| 60 Manifest& manifest); | 60 Manifest& manifest); |
| 61 | 61 |
| 62 } // namespace appcache | 62 } // namespace appcache |
| 63 | 63 |
| 64 #endif // WEBKIT_APPCACHE_MANIFEST_PARSER_H_ | 64 #endif // WEBKIT_APPCACHE_MANIFEST_PARSER_H_ |
| OLD | NEW |