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

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

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
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