Chromium Code Reviews| Index: Source/core/loader/FrameLoaderClient.h |
| diff --git a/Source/core/loader/FrameLoaderClient.h b/Source/core/loader/FrameLoaderClient.h |
| index a8a1fef7c734a14be7bbf36f5a1027561ee3ee9a..29e96964d343e5ddfd534eb4020c1936d2f676ca 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" // can't fwd declare enums. |
|
dcheng
2014/09/01 21:31:14
Nit: this comment is probably unnecessary.
mlamouri (slow - plz ping)
2014/09/01 22:49:13
Done.
|
| #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; } |
| }; |