| Index: content/renderer/manifest/manifest_parser.h
|
| diff --git a/content/renderer/manifest/manifest_parser.h b/content/renderer/manifest/manifest_parser.h
|
| index 0f12c5a474566306c2947aefb33f3aa18b7dc947..2c8d2076e33075824469ae3e04ead46d83515387 100644
|
| --- a/content/renderer/manifest/manifest_parser.h
|
| +++ b/content/renderer/manifest/manifest_parser.h
|
| @@ -90,6 +90,12 @@ class CONTENT_EXPORT ManifestParser {
|
| base::NullableString16 ParseShortName(
|
| const base::DictionaryValue& dictionary);
|
|
|
| + // Parses the 'scope' field of the manifest, as defined in:
|
| + // http://w3c.github.io/manifest/#dfn-steps-for-processing-the-scope-member
|
| + // Returns the parsed GURL if any, an empty GURL if the parsing failed.
|
| + GURL ParseScope(const base::DictionaryValue& dictionary,
|
| + const GURL& start_url);
|
| +
|
| // Parses the 'start_url' field of the manifest, as defined in:
|
| // http://w3c.github.io/manifest/#dfn-steps-for-processing-the-start_url-member
|
| // Returns the parsed GURL if any, an empty GURL if the parsing failed.
|
|
|