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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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/layout/LayoutTreeAsText.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
index 4ee2ed2c8b89c4276c0766fa3a64e697e9db39fc..c8685ae87d33b3f90b265ba0130f95e283dd826b 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
@@ -185,8 +185,9 @@ void LayoutTreeAsText::writeLayoutObject(TextStream& ts,
if (!(o.isText() && !o.isBR())) {
if (o.isFileUploadControl())
- ts << " " << quoteAndEscapeNonPrintables(
- toLayoutFileUploadControl(&o)->fileTextValue());
+ ts << " "
+ << quoteAndEscapeNonPrintables(
+ toLayoutFileUploadControl(&o)->fileTextValue());
if (o.parent()) {
Color color = o.resolveColor(CSSPropertyColor);
@@ -451,8 +452,9 @@ static void writeTextRun(TextStream& ts,
if (run.dirOverride())
ts << " override";
}
- ts << ": " << quoteAndEscapeNonPrintables(
- String(o.text()).substring(run.start(), run.len()));
+ ts << ": "
+ << quoteAndEscapeNonPrintables(
+ String(o.text()).substring(run.start(), run.len()));
if (run.hasHyphen())
ts << " + hyphen string "
<< quoteAndEscapeNonPrintables(o.style()->hyphenString());
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutThemeMac.mm ('k') | third_party/WebKit/Source/core/layout/LayoutView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698