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

Unified Diff: third_party/WebKit/Source/core/page/PrintContext.cpp

Issue 1835773002: Rename AtomicString::string() to AtomicString::getString(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Windows Created 4 years, 9 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/core/page/PrintContext.cpp
diff --git a/third_party/WebKit/Source/core/page/PrintContext.cpp b/third_party/WebKit/Source/core/page/PrintContext.cpp
index e0713d58ffd2bd9d29ce883a064900b16b132fc5..52b76ee784c8af82b96c954e7c72130e930691f1 100644
--- a/third_party/WebKit/Source/core/page/PrintContext.cpp
+++ b/third_party/WebKit/Source/core/page/PrintContext.cpp
@@ -277,7 +277,7 @@ String PrintContext::pageProperty(LocalFrame* frame, const char* propertyName, i
if (!strcmp(propertyName, "font-size"))
return String::number(style->getFontDescription().computedPixelSize());
if (!strcmp(propertyName, "font-family"))
- return style->getFontDescription().family().family().string();
+ return style->getFontDescription().family().family().getString();
if (!strcmp(propertyName, "size"))
return String::number(style->pageSize().width()) + ' ' + String::number(style->pageSize().height());
« no previous file with comments | « third_party/WebKit/Source/core/page/FrameTree.cpp ('k') | third_party/WebKit/Source/core/svg/SVGParsingError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698