OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 virtual ImageFrame::Status status() OVERRIDE | 116 virtual ImageFrame::Status status() OVERRIDE |
117 { | 117 { |
118 return m_status; | 118 return m_status; |
119 } | 119 } |
120 | 120 |
121 virtual float frameDuration() const OVERRIDE | 121 virtual float frameDuration() const OVERRIDE |
122 { | 122 { |
123 return m_frameDuration; | 123 return m_frameDuration; |
124 } | 124 } |
125 | 125 |
126 virtual IntSize decodedSize() const OVERRIDE | 126 virtual IntSize decodedSize(int component) const OVERRIDE |
127 { | 127 { |
128 return m_decodedSize; | 128 return m_decodedSize; |
129 } | 129 } |
130 | 130 |
131 protected: | 131 protected: |
132 void useMockImageDecoderFactory() | 132 void useMockImageDecoderFactory() |
133 { | 133 { |
134 m_lazyDecoder->frameGenerator()->setImageDecoderFactory(MockImageDecoder
Factory::create(this, m_decodedSize)); | 134 m_lazyDecoder->frameGenerator()->setImageDecoderFactory(MockImageDecoder
Factory::create(this, m_decodedSize)); |
135 } | 135 } |
136 | 136 |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); | 336 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); |
337 m_frameCount = 2; | 337 m_frameCount = 2; |
338 m_lazyDecoder->setData(*m_data, false); | 338 m_lazyDecoder->setData(*m_data, false); |
339 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); | 339 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); |
340 m_frameCount = 0; | 340 m_frameCount = 0; |
341 m_lazyDecoder->setData(*m_data, true); | 341 m_lazyDecoder->setData(*m_data, true); |
342 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); | 342 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); |
343 } | 343 } |
344 | 344 |
345 } // namespace blink | 345 } // namespace blink |
OLD | NEW |