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

Unified Diff: content/renderer/manifest/manifest_parser.h

Issue 550173002: Implement ManifestParser in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@manifest_fetcher
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
« no previous file with comments | « content/renderer/manifest/OWNERS ('k') | content/renderer/manifest/manifest_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/manifest/manifest_parser.h
diff --git a/content/renderer/manifest/manifest_parser.h b/content/renderer/manifest/manifest_parser.h
new file mode 100644
index 0000000000000000000000000000000000000000..8d49b9885ae0c109d75b414639b8f7a5ae285d22
--- /dev/null
+++ b/content/renderer/manifest/manifest_parser.h
@@ -0,0 +1,29 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_RENDERER_MANIFEST_MANIFEST_PARSER_H_
+#define CONTENT_RENDERER_MANIFEST_MANIFEST_PARSER_H_
+
+#include "base/strings/string_piece.h"
+#include "content/common/content_export.h"
+
+namespace base {
+class DictionaryValue;
+}
+
+namespace content {
+
+struct Manifest;
+
+// ManifestParser handles the logic of parsing the Web Manifest from a string.
+// It implements:
+// http://w3c.github.io/manifest/#dfn-steps-for-processing-a-manifest
+class CONTENT_EXPORT ManifestParser {
+ public:
+ static Manifest Parse(const base::StringPiece&);
+};
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_MANIFEST_MANIFEST_PARSER_H_
« no previous file with comments | « content/renderer/manifest/OWNERS ('k') | content/renderer/manifest/manifest_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698