| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 { | 89 { |
| 90 return toImageDocument(RawDataDocumentParser::document()); | 90 return toImageDocument(RawDataDocumentParser::document()); |
| 91 } | 91 } |
| 92 | 92 |
| 93 private: | 93 private: |
| 94 ImageDocumentParser(ImageDocument* document) | 94 ImageDocumentParser(ImageDocument* document) |
| 95 : RawDataDocumentParser(document) | 95 : RawDataDocumentParser(document) |
| 96 { | 96 { |
| 97 } | 97 } |
| 98 | 98 |
| 99 virtual void appendBytes(const char*, size_t) override; | 99 void appendBytes(const char*, size_t) override; |
| 100 virtual void finish(); | 100 virtual void finish(); |
| 101 }; | 101 }; |
| 102 | 102 |
| 103 // -------- | 103 // -------- |
| 104 | 104 |
| 105 static float pageZoomFactor(const Document* document) | 105 static float pageZoomFactor(const Document* document) |
| 106 { | 106 { |
| 107 LocalFrame* frame = document->frame(); | 107 LocalFrame* frame = document->frame(); |
| 108 return frame ? frame->pageZoomFactor() : 1; | 108 return frame ? frame->pageZoomFactor() : 1; |
| 109 } | 109 } |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 } | 443 } |
| 444 | 444 |
| 445 bool ImageEventListener::operator==(const EventListener& listener) | 445 bool ImageEventListener::operator==(const EventListener& listener) |
| 446 { | 446 { |
| 447 if (const ImageEventListener* imageEventListener = ImageEventListener::cast(
&listener)) | 447 if (const ImageEventListener* imageEventListener = ImageEventListener::cast(
&listener)) |
| 448 return m_doc == imageEventListener->m_doc; | 448 return m_doc == imageEventListener->m_doc; |
| 449 return false; | 449 return false; |
| 450 } | 450 } |
| 451 | 451 |
| 452 } | 452 } |
| OLD | NEW |