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

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: apply Nate's comments Created 6 years, 4 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/loader/FrameLoaderClient.h
diff --git a/Source/core/loader/FrameLoaderClient.h b/Source/core/loader/FrameLoaderClient.h
index a8a1fef7c734a14be7bbf36f5a1027561ee3ee9a..12861257ce85ba37031a54b89c33e86343834bb7 100644
--- a/Source/core/loader/FrameLoaderClient.h
+++ b/Source/core/loader/FrameLoaderClient.h
@@ -34,6 +34,8 @@
#include "core/frame/FrameClient.h"
#include "core/loader/FrameLoaderTypes.h"
#include "core/loader/NavigationPolicy.h"
+#include "public/platform/WebManifest.h"
+#include "public/platform/WebManifestError.h"
#include "platform/network/ResourceLoadPriority.h"
#include "platform/weborigin/Referrer.h"
#include "wtf/Forward.h"
@@ -228,6 +230,8 @@ namespace blink {
virtual void didStopAllLoaders() { }
virtual void dispatchDidChangeManifest() { }
+ virtual void dispatchDidLoadManifest(blink::WebManifest) { }
+ virtual void dispatchDidFailLoadManifest(blink::WebManifestError) { }
virtual bool isFrameLoaderClientImpl() const { return false; }
};

Powered by Google App Engine
This is Rietveld 408576698