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

Side by Side Diff: Source/core/platform/graphics/harfbuzz/HarfBuzzShaper.h

Issue 47613002: Use FINAL macro for classes whose virtual destructor was removed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 28 matching lines...) Expand all
39 #include "wtf/OwnPtr.h" 39 #include "wtf/OwnPtr.h"
40 #include "wtf/PassOwnPtr.h" 40 #include "wtf/PassOwnPtr.h"
41 #include "wtf/unicode/CharacterNames.h" 41 #include "wtf/unicode/CharacterNames.h"
42 #include "wtf/Vector.h" 42 #include "wtf/Vector.h"
43 43
44 namespace WebCore { 44 namespace WebCore {
45 45
46 class Font; 46 class Font;
47 class SimpleFontData; 47 class SimpleFontData;
48 48
49 class HarfBuzzShaper { 49 class HarfBuzzShaper FINAL {
50 public: 50 public:
51 enum NormalizeMode { 51 enum NormalizeMode {
52 DoNotNormalizeMirrorChars, 52 DoNotNormalizeMirrorChars,
53 NormalizeMirrorChars 53 NormalizeMirrorChars
54 }; 54 };
55 55
56 HarfBuzzShaper(const Font*, const TextRun&); 56 HarfBuzzShaper(const Font*, const TextRun&);
57 57
58 void setDrawRange(int from, int to); 58 void setDrawRange(int from, int to);
59 bool shape(GlyphBuffer* = 0); 59 bool shape(GlyphBuffer* = 0);
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 int m_toIndex; 150 int m_toIndex;
151 151
152 float m_totalWidth; 152 float m_totalWidth;
153 153
154 friend struct CachedShapingResults; 154 friend struct CachedShapingResults;
155 }; 155 };
156 156
157 } // namespace WebCore 157 } // namespace WebCore
158 158
159 #endif // HarfBuzzShaper_h 159 #endif // HarfBuzzShaper_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698