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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 { | 86 { |
87 return toImageDocument(RawDataDocumentParser::document()); | 87 return toImageDocument(RawDataDocumentParser::document()); |
88 } | 88 } |
89 | 89 |
90 private: | 90 private: |
91 ImageDocumentParser(ImageDocument* document) | 91 ImageDocumentParser(ImageDocument* document) |
92 : RawDataDocumentParser(document) | 92 : RawDataDocumentParser(document) |
93 { | 93 { |
94 } | 94 } |
95 | 95 |
96 virtual void appendBytes(const char*, size_t) OVERRIDE; | 96 virtual void appendBytes(const char*, size_t) override; |
97 virtual void finish(); | 97 virtual void finish(); |
98 }; | 98 }; |
99 | 99 |
100 // -------- | 100 // -------- |
101 | 101 |
102 static float pageZoomFactor(const Document* document) | 102 static float pageZoomFactor(const Document* document) |
103 { | 103 { |
104 LocalFrame* frame = document->frame(); | 104 LocalFrame* frame = document->frame(); |
105 return frame ? frame->pageZoomFactor() : 1; | 105 return frame ? frame->pageZoomFactor() : 1; |
106 } | 106 } |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
396 } | 396 } |
397 | 397 |
398 bool ImageEventListener::operator==(const EventListener& listener) | 398 bool ImageEventListener::operator==(const EventListener& listener) |
399 { | 399 { |
400 if (const ImageEventListener* imageEventListener = ImageEventListener::cast(
&listener)) | 400 if (const ImageEventListener* imageEventListener = ImageEventListener::cast(
&listener)) |
401 return m_doc == imageEventListener->m_doc; | 401 return m_doc == imageEventListener->m_doc; |
402 return false; | 402 return false; |
403 } | 403 } |
404 | 404 |
405 } | 405 } |
OLD | NEW |