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

Unified Diff: Source/core/fetch/Resource.h

Issue 295063002: [NotLanded] Implement the fetching algorithm of the Web Manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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 side-by-side diff with in-line comments
Download patch
Index: Source/core/fetch/Resource.h
diff --git a/Source/core/fetch/Resource.h b/Source/core/fetch/Resource.h
index 829cd67cc864df56b95811416d5042c0ab390bff..3d14a617de485381ca07d1cc6349232b8d462895 100644
--- a/Source/core/fetch/Resource.h
+++ b/Source/core/fetch/Resource.h
@@ -71,7 +71,8 @@ public:
LinkSubresource,
TextTrack,
ImportResource,
- Media // Audio or video file requested by a HTML5 media element
+ Media, // Audio or video file requested by a HTML5 media element
+ Manifest
};
enum Status {
@@ -154,7 +155,8 @@ public:
|| type() == LinkSubresource
|| type() == Media
|| type() == Raw
- || type() == TextTrack;
+ || type() == TextTrack
+ || type() == Manifest;
}
// Computes the status of an object after loading.

Powered by Google App Engine
This is Rietveld 408576698