OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
yhirano
2017/01/06 05:32:38
ditto
hiroshige
2017/01/06 20:04:33
ditto.
| |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "core/loader/resource/MockImageResourceClient.h" | 5 #include "core/loader/resource/MockImageResourceObserver.h" |
6 | 6 |
7 #include "core/loader/resource/ImageResource.h" | 7 #include "core/loader/resource/ImageResource.h" |
8 #include "core/loader/resource/ImageResourceContent.h" | 8 #include "core/loader/resource/ImageResourceContent.h" |
9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
10 | 10 |
11 namespace blink { | 11 namespace blink { |
12 | 12 |
13 MockImageResourceClient::MockImageResourceClient(ImageResource* resource) | 13 MockImageResourceObserver::MockImageResourceObserver( |
14 : MockResourceClient(resource), | 14 ImageResourceContent* content) |
15 : m_content(content), | |
15 m_imageChangedCount(0), | 16 m_imageChangedCount(0), |
16 m_encodedSizeOnLastImageChanged(0), | 17 m_imageWidthOnLastImageChanged(0), |
17 m_imageNotifyFinishedCount(0), | 18 m_imageNotifyFinishedCount(0), |
18 m_encodedSizeOnImageNotifyFinished(0) { | 19 m_imageWidthOnImageNotifyFinished(0) { |
19 toImageResource(m_resource)->getContent()->addObserver(this); | 20 m_content->addObserver(this); |
20 } | 21 } |
21 | 22 |
22 MockImageResourceClient::~MockImageResourceClient() {} | 23 MockImageResourceObserver::~MockImageResourceObserver() { |
23 | 24 removeAsObserver(); |
24 void MockImageResourceClient::removeAsClient() { | |
25 toImageResource(m_resource)->getContent()->removeObserver(this); | |
26 MockResourceClient::removeAsClient(); | |
27 } | 25 } |
28 | 26 |
29 void MockImageResourceClient::dispose() { | 27 void MockImageResourceObserver::removeAsObserver() { |
30 if (m_resource) | 28 if (!m_content) |
31 toImageResource(m_resource)->getContent()->removeObserver(this); | 29 return; |
32 MockResourceClient::dispose(); | 30 m_content->removeObserver(this); |
31 m_content = nullptr; | |
33 } | 32 } |
34 | 33 |
35 void MockImageResourceClient::imageChanged(ImageResourceContent* image, | 34 void MockImageResourceObserver::imageChanged(ImageResourceContent* image, |
36 const IntRect*) { | 35 const IntRect*) { |
37 m_imageChangedCount++; | 36 m_imageChangedCount++; |
38 m_encodedSizeOnLastImageChanged = m_resource->encodedSize(); | 37 m_imageWidthOnLastImageChanged = |
38 m_content->hasImage() ? m_content->getImage()->width() : 0; | |
39 } | 39 } |
40 | 40 |
41 void MockImageResourceClient::imageNotifyFinished(ImageResourceContent* image) { | 41 void MockImageResourceObserver::imageNotifyFinished( |
42 ImageResourceContent* image) { | |
42 ASSERT_EQ(0, m_imageNotifyFinishedCount); | 43 ASSERT_EQ(0, m_imageNotifyFinishedCount); |
43 m_imageNotifyFinishedCount++; | 44 m_imageNotifyFinishedCount++; |
44 m_encodedSizeOnImageNotifyFinished = m_resource->encodedSize(); | 45 m_imageWidthOnImageNotifyFinished = |
46 m_content->hasImage() ? m_content->getImage()->width() : 0; | |
45 } | 47 } |
46 | 48 |
47 bool MockImageResourceClient::notifyFinishedCalled() const { | 49 bool MockImageResourceObserver::imageNotifyFinishedCalled() const { |
48 return m_notifyFinishedCalled; | 50 DCHECK_LE(m_imageNotifyFinishedCount, 1); |
51 return m_imageNotifyFinishedCount; | |
49 } | 52 } |
50 | 53 |
51 } // namespace blink | 54 } // namespace blink |
OLD | NEW |