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

Unified Diff: third_party/WebKit/Source/core/html/HTMLViewSourceDocument.cpp

Issue 2384273007: reflow comments in core/html/*.{cpp,h},core/html/imports (Closed)
Patch Set: comments Created 4 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
Index: third_party/WebKit/Source/core/html/HTMLViewSourceDocument.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLViewSourceDocument.cpp b/third_party/WebKit/Source/core/html/HTMLViewSourceDocument.cpp
index 79e511a8332de3c4e6443cb39538740f7ba739c4..f385cd82b5130f9c354cd5a24851c6efab6c8076 100644
--- a/third_party/WebKit/Source/core/html/HTMLViewSourceDocument.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLViewSourceDocument.cpp
@@ -73,8 +73,8 @@ void HTMLViewSourceDocument::createContainingTable() {
HTMLBodyElement* body = HTMLBodyElement::create(*this);
html->parserAppendChild(body);
- // Create a line gutter div that can be used to make sure the gutter extends down the height of the whole
- // document.
+ // Create a line gutter div that can be used to make sure the gutter extends
+ // down the height of the whole document.
HTMLDivElement* div = HTMLDivElement::create(*this);
div->setAttribute(classAttr, "line-gutter-backdrop");
body->parserAppendChild(div);
@@ -203,7 +203,8 @@ void HTMLViewSourceDocument::addLine(const AtomicString& className) {
HTMLTableRowElement* trow = HTMLTableRowElement::create(*this);
m_tbody->parserAppendChild(trow);
- // Create a cell that will hold the line number (it is generated in the stylesheet using counters).
+ // Create a cell that will hold the line number (it is generated in the
+ // stylesheet using counters).
HTMLTableCellElement* td = HTMLTableCellElement::create(tdTag, *this);
td->setAttribute(classAttr, "line-number");
td->setIntegralAttribute(valueAttr, ++m_lineNumber);
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLVideoElement.cpp ('k') | third_party/WebKit/Source/core/html/ImageDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698