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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptSourceCode.cpp

Issue 2386173002: reflow comments in Source/bindings/core/v8 (Closed)
Patch Set: 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/bindings/core/v8/ScriptSourceCode.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptSourceCode.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptSourceCode.cpp
index 04ce28533c7b561c25d8d11b5067cbd4f44c4731..9c7f78faeceffe615dbb4bb5903cae7780f1e345 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptSourceCode.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptSourceCode.cpp
@@ -63,13 +63,14 @@ String ScriptSourceCode::sourceMapUrl() const {
}
void ScriptSourceCode::treatNullSourceAsEmpty() {
- // ScriptSourceCode allows for the representation of the null/not-there-really ScriptSourceCode value.
- // Encoded by way of a m_source.isNull() being true, with the nullary constructor to be used to
- // construct such a value.
+ // ScriptSourceCode allows for the representation of the null/not-there-really
+ // ScriptSourceCode value. Encoded by way of a m_source.isNull() being true,
+ // with the nullary constructor to be used to construct such a value.
//
- // Should the other constructors be passed a null string, that is interpreted as representing
- // the empty script. Consequently, we need to disambiguate between such null string occurrences.
- // Do that by converting the latter case's null strings into empty ones.
+ // Should the other constructors be passed a null string, that is interpreted
+ // as representing the empty script. Consequently, we need to disambiguate
+ // between such null string occurrences. Do that by converting the latter
+ // case's null strings into empty ones.
if (m_source.isNull())
m_source = "";
}

Powered by Google App Engine
This is Rietveld 408576698