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

Side by Side Diff: Source/core/layout/LayoutReplica.h

Issue 1231363003: Fix virtual/override/final usage in Source/core/layout/. (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/layout/LayoutReplaced.h ('k') | Source/core/layout/LayoutRuby.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) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 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 * 7 *
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 18 matching lines...) Expand all
29 #ifndef LayoutReplica_h 29 #ifndef LayoutReplica_h
30 #define LayoutReplica_h 30 #define LayoutReplica_h
31 31
32 #include "core/layout/LayoutBox.h" 32 #include "core/layout/LayoutBox.h"
33 33
34 namespace blink { 34 namespace blink {
35 35
36 class LayoutReplica final : public LayoutBox { 36 class LayoutReplica final : public LayoutBox {
37 public: 37 public:
38 static LayoutReplica* createAnonymous(Document*); 38 static LayoutReplica* createAnonymous(Document*);
39 ~LayoutReplica() override;
39 40
40 virtual ~LayoutReplica(); 41 const char* name() const override { return "LayoutReplica"; }
41 42
42 virtual const char* name() const override { return "LayoutReplica"; } 43 DeprecatedPaintLayerType layerTypeRequired() const override { return NormalD eprecatedPaintLayer; }
43 44
44 virtual DeprecatedPaintLayerType layerTypeRequired() const override { return NormalDeprecatedPaintLayer; } 45 void layout() override;
45 46
46 virtual void layout() override; 47 void paint(const PaintInfo&, const LayoutPoint&) override;
47
48 virtual void paint(const PaintInfo&, const LayoutPoint&) override;
49 48
50 private: 49 private:
51 LayoutReplica(); 50 LayoutReplica();
52 51
53 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectReplica || LayoutBox::isOfType(type); } 52 bool isOfType(LayoutObjectType type) const override { return type == LayoutO bjectReplica || LayoutBox::isOfType(type); }
54 virtual void computePreferredLogicalWidths() override; 53 void computePreferredLogicalWidths() override;
55 54
56 }; 55 };
57 56
58 } // namespace blink 57 } // namespace blink
59 58
60 #endif // LayoutReplica_h 59 #endif // LayoutReplica_h
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutReplaced.h ('k') | Source/core/layout/LayoutRuby.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698