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

Unified Diff: third_party/WebKit/Source/platform/fonts/Font.cpp

Issue 2387263004: Manually remove many instances of a comma quirk arising from the reformat. (Closed)
Patch Set: merge with master; thakis nit Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/fonts/Font.cpp
diff --git a/third_party/WebKit/Source/platform/fonts/Font.cpp b/third_party/WebKit/Source/platform/fonts/Font.cpp
index 8ddd63f87fcf5e76e9b83aa8392fda9cce0409e4..f210508dba4057ecf572a1ddea2eefccc28aa1ef 100644
--- a/third_party/WebKit/Source/platform/fonts/Font.cpp
+++ b/third_party/WebKit/Source/platform/fonts/Font.cpp
@@ -65,11 +65,10 @@ Font::Font(const FontDescription& fd)
Font::Font(const Font& other)
: m_fontDescription(other.m_fontDescription),
- m_fontFallbackList(other.m_fontFallbackList)
+ m_fontFallbackList(other.m_fontFallbackList),
// TODO(yosin): We should have a comment the reason why don't we copy
// |m_canShapeWordByWord| and |m_shapeWordByWordComputed| from |other|,
// since |operator=()| copies them from |other|.
- ,
m_canShapeWordByWord(0),
m_shapeWordByWordComputed(0) {}

Powered by Google App Engine
This is Rietveld 408576698