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

Side by Side Diff: Source/platform/transforms/ScaleTransformOperation.h

Issue 137933002: Update more platform classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 double x() const { return m_x; } 44 double x() const { return m_x; }
45 double y() const { return m_y; } 45 double y() const { return m_y; }
46 double z() const { return m_z; } 46 double z() const { return m_z; }
47 47
48 private: 48 private:
49 virtual bool isIdentity() const OVERRIDE { return m_x == 1 && m_y == 1 && m_z == 1; } 49 virtual bool isIdentity() const OVERRIDE { return m_x == 1 && m_y == 1 && m_z == 1; }
50 50
51 virtual OperationType type() const OVERRIDE { return m_type; } 51 virtual OperationType type() const OVERRIDE { return m_type; }
52 52
53 virtual bool operator==(const TransformOperation& o) const 53 virtual bool operator==(const TransformOperation& o) const OVERRIDE
54 { 54 {
55 if (!isSameType(o)) 55 if (!isSameType(o))
56 return false; 56 return false;
57 const ScaleTransformOperation* s = static_cast<const ScaleTransformOpera tion*>(&o); 57 const ScaleTransformOperation* s = static_cast<const ScaleTransformOpera tion*>(&o);
58 return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z; 58 return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z;
59 } 59 }
60 60
61 virtual void apply(TransformationMatrix& transform, const FloatSize&) const OVERRIDE 61 virtual void apply(TransformationMatrix& transform, const FloatSize&) const OVERRIDE
62 { 62 {
63 transform.scale3d(m_x, m_y, m_z); 63 transform.scale3d(m_x, m_y, m_z);
(...skipping 12 matching lines...) Expand all
76 76
77 double m_x; 77 double m_x;
78 double m_y; 78 double m_y;
79 double m_z; 79 double m_z;
80 OperationType m_type; 80 OperationType m_type;
81 }; 81 };
82 82
83 } // namespace WebCore 83 } // namespace WebCore
84 84
85 #endif // ScaleTransformOperation_h 85 #endif // ScaleTransformOperation_h
OLDNEW
« no previous file with comments | « Source/platform/transforms/RotateTransformOperation.h ('k') | Source/platform/transforms/SkewTransformOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698