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

Unified Diff: third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp

Issue 2392463004: reflow comments in modules/{webmidi,websocket} (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/modules/websockets/DOMWebSocket.cpp
diff --git a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp
index 69ff4d44f4029dbd0ce02b4b6b2c13c6ba6569e5..04391ec2284293d4ac15eb6d0962542b5a25b24c 100644
--- a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp
+++ b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.cpp
@@ -331,12 +331,14 @@ void DOMWebSocket::connect(const String& url,
return;
}
- // FIXME: Convert this to check the isolated world's Content Security Policy once webkit.org/b/104520 is solved.
+ // FIXME: Convert this to check the isolated world's Content Security Policy
+ // once webkit.org/b/104520 is solved.
if (!ContentSecurityPolicy::shouldBypassMainWorld(getExecutionContext()) &&
!getExecutionContext()->contentSecurityPolicy()->allowConnectToSource(
m_url)) {
m_state = kClosed;
- // The URL is safe to expose to JavaScript, as this check happens synchronously before redirection.
+ // The URL is safe to expose to JavaScript, as this check happens
+ // synchronously before redirection.
exceptionState.throwSecurityError(
"Refused to connect to '" + m_url.elidedString() +
"' because it violates the document's Content Security Policy.");
@@ -435,7 +437,8 @@ void DOMWebSocket::send(const String& message, ExceptionState& exceptionState) {
setInvalidStateErrorForSendMethod(exceptionState);
return;
}
- // No exception is raised if the connection was once established but has subsequently been closed.
+ // No exception is raised if the connection was once established but has
+ // subsequently been closed.
if (m_state == kClosing || m_state == kClosed) {
updateBufferedAmountAfterClose(encodedMessage.length());
return;
@@ -556,7 +559,8 @@ void DOMWebSocket::closeInternal(int code,
String::number(code) + " is neither.");
return;
}
- // Bindings specify USVString, so unpaired surrogates are already replaced with U+FFFD.
+ // Bindings specify USVString, so unpaired surrogates are already replaced
+ // with U+FFFD.
CString utf8 = reason.utf8();
if (utf8.length() > maxReasonSizeInBytes) {
exceptionState.throwDOMException(

Powered by Google App Engine
This is Rietveld 408576698