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

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

Issue 22923010: DevTools: Add CSS.getPlatformFontsForNode in protocol.json (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: use HFONT instead of SKTypeface on Win Created 7 years, 4 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/rendering/InlineTextBox.h ('k') | Source/devtools/protocol.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/InlineTextBox.cpp
diff --git a/Source/core/rendering/InlineTextBox.cpp b/Source/core/rendering/InlineTextBox.cpp
index 2bfe7de7bd567c9e49c226ef29d52ea77c0c14fd..7287d000279ac5e1797ae2b4ca25f6255d2e1ff8 100644
--- a/Source/core/rendering/InlineTextBox.cpp
+++ b/Source/core/rendering/InlineTextBox.cpp
@@ -1534,6 +1534,11 @@ TextRun InlineTextBox::constructTextRun(RenderStyle* style, const Font& font, St
return run;
}
+TextRun InlineTextBox::constructTextRunForInspector(RenderStyle* style, const Font& font) const
+{
+ return InlineTextBox::constructTextRun(style, font);
+}
+
#ifndef NDEBUG
const char* InlineTextBox::boxName() const
« no previous file with comments | « Source/core/rendering/InlineTextBox.h ('k') | Source/devtools/protocol.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698