Index: third_party/WebKit/Source/platform/fonts/FontFamily.h |
diff --git a/third_party/WebKit/Source/platform/fonts/FontFamily.h b/third_party/WebKit/Source/platform/fonts/FontFamily.h |
index e6bbd6e3547582d99aff7b4942e3519608087397..816c73ee4d500bf1b73db08ac7e19accf86d6c3d 100644 |
--- a/third_party/WebKit/Source/platform/fonts/FontFamily.h |
+++ b/third_party/WebKit/Source/platform/fonts/FontFamily.h |
@@ -78,9 +78,8 @@ inline bool operator!=(const FontFamily& a, const FontFamily& b) { |
inline FontFamily::~FontFamily() { |
RefPtr<SharedFontFamily> reaper = m_next.release(); |
while (reaper && reaper->hasOneRef()) |
- reaper = |
- reaper |
- ->releaseNext(); // implicitly protects reaper->next, then derefs reaper |
+ reaper = reaper->releaseNext(); // implicitly protects reaper->next, then |
dcheng
2016/10/03 20:41:17
Nit: I find this more readable on its own line (al
Nico
2016/10/03 20:46:56
Done.
|
+ // derefs reaper |
} |
inline const FontFamily* FontFamily::next() const { |