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

Unified Diff: third_party/WebKit/Source/core/loader/resource/MockImageResourceClient.cpp

Issue 2607023002: Replace MockImageResourceClient with MockImageResourceObserver (Closed)
Patch Set: Rebase Created 3 years, 11 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: third_party/WebKit/Source/core/loader/resource/MockImageResourceClient.cpp
diff --git a/third_party/WebKit/Source/core/loader/resource/MockImageResourceClient.cpp b/third_party/WebKit/Source/core/loader/resource/MockImageResourceClient.cpp
deleted file mode 100644
index 56e0c2eeb5c81f6881fcd609193540db2843b697..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/loader/resource/MockImageResourceClient.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "core/loader/resource/MockImageResourceClient.h"
-
-#include "core/loader/resource/ImageResource.h"
-#include "core/loader/resource/ImageResourceContent.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace blink {
-
-MockImageResourceClient::MockImageResourceClient(ImageResource* resource)
- : MockResourceClient(resource),
- m_imageChangedCount(0),
- m_encodedSizeOnLastImageChanged(0),
- m_imageNotifyFinishedCount(0),
- m_encodedSizeOnImageNotifyFinished(0) {
- toImageResource(m_resource)->getContent()->addObserver(this);
-}
-
-MockImageResourceClient::~MockImageResourceClient() {}
-
-void MockImageResourceClient::removeAsClient() {
- toImageResource(m_resource)->getContent()->removeObserver(this);
- MockResourceClient::removeAsClient();
-}
-
-void MockImageResourceClient::dispose() {
- if (m_resource)
- toImageResource(m_resource)->getContent()->removeObserver(this);
- MockResourceClient::dispose();
-}
-
-void MockImageResourceClient::imageChanged(ImageResourceContent* image,
- const IntRect*) {
- m_imageChangedCount++;
- m_encodedSizeOnLastImageChanged = m_resource->encodedSize();
-}
-
-void MockImageResourceClient::imageNotifyFinished(ImageResourceContent* image) {
- ASSERT_EQ(0, m_imageNotifyFinishedCount);
- m_imageNotifyFinishedCount++;
- m_encodedSizeOnImageNotifyFinished = m_resource->encodedSize();
-}
-
-bool MockImageResourceClient::notifyFinishedCalled() const {
- return m_notifyFinishedCalled;
-}
-
-} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698