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

Side by Side Diff: content/browser/appcache/appcache_manifest_parser.h

Issue 469413003: Rename appcache/manifest_parser* to appcache/appcache_manifest_parser*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update third_party_files_whitelist.txt Created 6 years, 4 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
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 11 matching lines...) Expand all
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 26 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
27 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32 #ifndef CONTENT_BROWSER_APPCACHE_MANIFEST_PARSER_H_ 32 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_MANIFEST_PARSER_H_
33 #define CONTENT_BROWSER_APPCACHE_MANIFEST_PARSER_H_ 33 #define CONTENT_BROWSER_APPCACHE_APPCACHE_MANIFEST_PARSER_H_
34 34
35 #include <string> 35 #include <string>
36 #include <vector> 36 #include <vector>
37 37
38 #include "base/containers/hash_tables.h" 38 #include "base/containers/hash_tables.h"
39 #include "content/common/appcache_interfaces.h" 39 #include "content/common/appcache_interfaces.h"
40 #include "content/common/content_export.h" 40 #include "content/common/content_export.h"
41 41
42 class GURL; 42 class GURL;
43 43
(...skipping 18 matching lines...) Expand all
62 62
63 CONTENT_EXPORT bool ParseManifest( 63 CONTENT_EXPORT bool ParseManifest(
64 const GURL& manifest_url, 64 const GURL& manifest_url,
65 const char* data, 65 const char* data,
66 int length, 66 int length,
67 ParseMode parse_mode, 67 ParseMode parse_mode,
68 Manifest& manifest); 68 Manifest& manifest);
69 69
70 } // namespace content 70 } // namespace content
71 71
72 #endif // CONTENT_BROWSER_APPCACHE_MANIFEST_PARSER_H_ 72 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_MANIFEST_PARSER_H_
OLDNEW
« no previous file with comments | « content/browser/appcache/appcache.h ('k') | content/browser/appcache/appcache_manifest_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698