Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1070)

Side by Side Diff: Source/core/html/ImageDocument.cpp

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/html/ImageDocument.h ('k') | Source/core/html/LabelableElement.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « Source/core/html/ImageDocument.h ('k') | Source/core/html/LabelableElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698