| Index: third_party/WebKit/Source/core/fetch/Resource.cpp
|
| diff --git a/third_party/WebKit/Source/core/fetch/Resource.cpp b/third_party/WebKit/Source/core/fetch/Resource.cpp
|
| index 9347e6edd850130a3c800a060c85e5e5fc62e3d8..1c8e3d1c1be60e93314877a0b33431ed4a65754d 100644
|
| --- a/third_party/WebKit/Source/core/fetch/Resource.cpp
|
| +++ b/third_party/WebKit/Source/core/fetch/Resource.cpp
|
| @@ -1123,6 +1123,8 @@ const char* Resource::resourceTypeToString(Type type, const FetchInitiatorInfo&
|
| return "Imported resource";
|
| case Resource::Media:
|
| return "Media";
|
| + case Resource::Manifest:
|
| + return "Manifest";
|
| }
|
| ASSERT_NOT_REACHED();
|
| return initatorTypeNameToString(initiatorInfo.name);
|
| @@ -1172,6 +1174,8 @@ const char* ResourceTypeName(Resource::Type type)
|
| return "ImportResource";
|
| case Resource::Media:
|
| return "Media";
|
| + case Resource::Manifest:
|
| + return "Manifest";
|
| }
|
| ASSERT_NOT_REACHED();
|
| return "Unknown";
|
|
|