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

Unified Diff: Source/core/loader/FrameLoaderClient.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: review comments 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 | « Source/core/fetch/ResourceFetcher.cpp ('k') | Source/core/loader/ManifestLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/FrameLoaderClient.h
diff --git a/Source/core/loader/FrameLoaderClient.h b/Source/core/loader/FrameLoaderClient.h
index a8a1fef7c734a14be7bbf36f5a1027561ee3ee9a..8c6dea5567006fef6ca4bfc0064e91835fc04ced 100644
--- a/Source/core/loader/FrameLoaderClient.h
+++ b/Source/core/loader/FrameLoaderClient.h
@@ -36,18 +36,20 @@
#include "core/loader/NavigationPolicy.h"
#include "platform/network/ResourceLoadPriority.h"
#include "platform/weborigin/Referrer.h"
+#include "public/platform/WebManifestError.h"
#include "wtf/Forward.h"
#include "wtf/Vector.h"
#include <v8.h>
namespace blink {
+class WebApplicationCacheHost;
+class WebApplicationCacheHostClient;
class WebCookieJar;
class WebRTCPeerConnectionHandler;
class WebServiceWorkerProvider;
class WebServiceWorkerProviderClient;
class WebSocketHandle;
-class WebApplicationCacheHost;
-class WebApplicationCacheHostClient;
+struct WebManifest;
}
namespace blink {
@@ -228,6 +230,8 @@ namespace blink {
virtual void didStopAllLoaders() { }
virtual void dispatchDidChangeManifest() { }
+ virtual void dispatchDidLoadManifest(const blink::WebManifest&) { }
+ virtual void dispatchDidFailLoadManifest(blink::WebManifestError) { }
virtual bool isFrameLoaderClientImpl() const { return false; }
};
« no previous file with comments | « Source/core/fetch/ResourceFetcher.cpp ('k') | Source/core/loader/ManifestLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698