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

Unified Diff: Source/core/rendering/RenderRuby.cpp

Issue 672343002: Add UseCounter for RenderRuby (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « Source/core/frame/UseCounter.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderRuby.cpp
diff --git a/Source/core/rendering/RenderRuby.cpp b/Source/core/rendering/RenderRuby.cpp
index 563ce62cf1a019d8bbec18668706c1c91c072e08..2dc97b51bc7642a235c79d2f6f207593a2c7a2b0 100644
--- a/Source/core/rendering/RenderRuby.cpp
+++ b/Source/core/rendering/RenderRuby.cpp
@@ -32,6 +32,7 @@
#include "core/rendering/RenderRuby.h"
+#include "core/frame/UseCounter.h"
#include "core/rendering/RenderRubyRun.h"
#include "core/rendering/style/RenderStyle.h"
#include "wtf/RefPtr.h"
@@ -111,6 +112,7 @@ static inline RenderRubyRun* findRubyRunParent(RenderObject* child)
RenderRubyAsInline::RenderRubyAsInline(Element* element)
: RenderInline(element)
{
+ UseCounter::count(document(), UseCounter::RenderRuby);
}
RenderRubyAsInline::~RenderRubyAsInline()
@@ -219,6 +221,7 @@ void RenderRubyAsInline::removeChild(RenderObject* child)
RenderRubyAsBlock::RenderRubyAsBlock(Element* element)
: RenderBlockFlow(element)
{
+ UseCounter::count(document(), UseCounter::RenderRuby);
}
RenderRubyAsBlock::~RenderRubyAsBlock()
« no previous file with comments | « Source/core/frame/UseCounter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698