| 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) {}
|
|
|
|
|