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

Unified Diff: third_party/WebKit/Source/core/fetch/MockResourceClients.h

Issue 2469873002: [ImageResource 4] Split ImageResource into Resource and Image parts (Closed)
Patch Set: style Created 4 years 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: third_party/WebKit/Source/core/fetch/MockResourceClients.h
diff --git a/third_party/WebKit/Source/core/fetch/MockResourceClients.h b/third_party/WebKit/Source/core/fetch/MockResourceClients.h
index 0f911d4dd1409cdcde779d61896f74cee280f3b3..90fe127837a0340a7e287605568bee099fd9ecfe 100644
--- a/third_party/WebKit/Source/core/fetch/MockResourceClients.h
+++ b/third_party/WebKit/Source/core/fetch/MockResourceClients.h
@@ -31,6 +31,8 @@
#ifndef MockResourceClients_h
#define MockResourceClients_h
+#include "core/fetch/ImageResource.h"
+#include "core/fetch/ImageResourceContent.h"
#include "core/fetch/ImageResourceObserver.h"
#include "core/fetch/Resource.h"
#include "core/fetch/ResourceClient.h"
@@ -72,8 +74,8 @@ class MockImageResourceClient final : public MockResourceClient,
explicit MockImageResourceClient(ImageResource*);
~MockImageResourceClient() override;
- void imageNotifyFinished(ImageResource*) override;
- void imageChanged(ImageResource*, const IntRect*) override;
+ void imageNotifyFinished(ImageResourceContent*) override;
+ void imageChanged(ImageResourceContent*, const IntRect*) override;
String debugName() const override { return "MockImageResourceClient"; }

Powered by Google App Engine
This is Rietveld 408576698