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

Side by Side Diff: Source/core/html/canvas/Path2D.h

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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012, 2013 Adobe Systems Incorporated. All rights reserved. 2 * Copyright (C) 2012, 2013 Adobe Systems Incorporated. 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 { 56 {
57 addPath(path, 0); 57 addPath(path, 0);
58 } 58 }
59 59
60 void addPath(Path2D* path, SVGMatrixTearOff* transform) 60 void addPath(Path2D* path, SVGMatrixTearOff* transform)
61 { 61 {
62 Path src = path->path(); 62 Path src = path->path();
63 m_path.addPath(src, transform ? transform->value() : AffineTransform(1, 0, 0, 1, 0, 0)); 63 m_path.addPath(src, transform ? transform->value() : AffineTransform(1, 0, 0, 1, 0, 0));
64 } 64 }
65 65
66 virtual ~Path2D() { } 66 ~Path2D() override { }
67 DEFINE_INLINE_TRACE() { } 67 DEFINE_INLINE_TRACE() { }
68 68
69 private: 69 private:
70 Path2D() : CanvasPathMethods() { } 70 Path2D() : CanvasPathMethods() { }
71 71
72 Path2D(const Path& path) 72 Path2D(const Path& path)
73 : CanvasPathMethods(path) { } 73 : CanvasPathMethods(path) { }
74 74
75 Path2D(Path2D* path) 75 Path2D(Path2D* path)
76 : CanvasPathMethods(path->path()) { } 76 : CanvasPathMethods(path->path()) { }
77 77
78 Path2D(const String& pathData) 78 Path2D(const String& pathData)
79 : CanvasPathMethods() 79 : CanvasPathMethods()
80 { 80 {
81 buildPathFromString(pathData, m_path); 81 buildPathFromString(pathData, m_path);
82 } 82 }
83 }; 83 };
84 84
85 } // namespace blink 85 } // namespace blink
86 86
87 #endif // Path2D_h 87 #endif // Path2D_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698