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

Side by Side Diff: third_party/WebKit/Source/platform/fonts/shaping/ShapeResult.h

Issue 2835103002: Move blobalizer implementation to ShapeResultBloberizer (Closed)
Patch Set: Fix canvas tests Created 3 years, 7 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
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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 // Overall direction for the TextRun, dictates which order each individual 119 // Overall direction for the TextRun, dictates which order each individual
120 // sub run (represented by RunInfo structs in the m_runs vector) can have a 120 // sub run (represented by RunInfo structs in the m_runs vector) can have a
121 // different text direction. 121 // different text direction.
122 unsigned direction_ : 1; 122 unsigned direction_ : 1;
123 123
124 // Tracks whether any runs contain glyphs with a y-offset != 0. 124 // Tracks whether any runs contain glyphs with a y-offset != 0.
125 unsigned has_vertical_offsets_ : 1; 125 unsigned has_vertical_offsets_ : 1;
126 126
127 friend class HarfBuzzShaper; 127 friend class HarfBuzzShaper;
128 friend class ShapeResultBuffer; 128 friend class ShapeResultBuffer;
129 friend class ShapeResultBloberizer;
129 }; 130 };
130 131
131 } // namespace blink 132 } // namespace blink
132 133
133 #endif // ShapeResult_h 134 #endif // ShapeResult_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698