Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. |
| 3 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. | 3 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 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 17 matching lines...) Expand all Loading... | |
| 28 #define ImageDecoder_h | 28 #define ImageDecoder_h |
| 29 | 29 |
| 30 #include "SkColorPriv.h" | 30 #include "SkColorPriv.h" |
| 31 #include "platform/PlatformExport.h" | 31 #include "platform/PlatformExport.h" |
| 32 #include "platform/SharedBuffer.h" | 32 #include "platform/SharedBuffer.h" |
| 33 #include "platform/graphics/ImageSource.h" | 33 #include "platform/graphics/ImageSource.h" |
| 34 #include "platform/image-decoders/ImageAnimation.h" | 34 #include "platform/image-decoders/ImageAnimation.h" |
| 35 #include "platform/image-decoders/ImageFrame.h" | 35 #include "platform/image-decoders/ImageFrame.h" |
| 36 #include "public/platform/Platform.h" | 36 #include "public/platform/Platform.h" |
| 37 #include "wtf/Assertions.h" | 37 #include "wtf/Assertions.h" |
| 38 #include "wtf/PassOwnPtr.h" | |
|
Peter Kasting
2015/06/15 20:18:21
Nit: If this header compiled without these before,
Noel Gordon
2015/06/16 17:53:47
It's correct from the include-what-you-use standpo
| |
| 38 #include "wtf/RefPtr.h" | 39 #include "wtf/RefPtr.h" |
| 40 #include "wtf/Threading.h" | |
| 39 #include "wtf/Vector.h" | 41 #include "wtf/Vector.h" |
| 40 #include "wtf/text/WTFString.h" | 42 #include "wtf/text/WTFString.h" |
| 41 | 43 |
| 42 #if USE(QCMSLIB) | 44 #if USE(QCMSLIB) |
| 43 #include "qcms.h" | 45 #include "qcms.h" |
| 44 #endif | 46 #endif |
| 45 | 47 |
| 46 typedef Vector<char> ColorProfile; | 48 typedef Vector<char> ColorProfile; |
| 47 | 49 |
| 48 namespace blink { | 50 namespace blink { |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 342 | 344 |
| 343 IntSize m_size; | 345 IntSize m_size; |
| 344 bool m_sizeAvailable; | 346 bool m_sizeAvailable; |
| 345 bool m_isAllDataReceived; | 347 bool m_isAllDataReceived; |
| 346 bool m_failed; | 348 bool m_failed; |
| 347 }; | 349 }; |
| 348 | 350 |
| 349 } // namespace blink | 351 } // namespace blink |
| 350 | 352 |
| 351 #endif | 353 #endif |
| OLD | NEW |