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

Unified Diff: third_party/WebKit/Source/core/fileapi/FileError.cpp

Issue 2394653003: reflow comments in core/events,core/fileapi (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/core/fileapi/FileError.cpp
diff --git a/third_party/WebKit/Source/core/fileapi/FileError.cpp b/third_party/WebKit/Source/core/fileapi/FileError.cpp
index 9e3de52e646476576034eb42aae0421c71e0162b..25d651060b2c5b8adab784bb02b6daf98b826d83 100644
--- a/third_party/WebKit/Source/core/fileapi/FileError.cpp
+++ b/third_party/WebKit/Source/core/fileapi/FileError.cpp
@@ -107,7 +107,8 @@ ExceptionCode errorCodeToExceptionCode(ErrorCode code) {
}
const char* errorCodeToMessage(ErrorCode code) {
- // Note that some of these do not set message. If message is 0 then the default message is used.
+ // Note that some of these do not set message. If message is 0 then the
+ // default message is used.
switch (code) {
case kOK:
return 0;
@@ -147,7 +148,8 @@ void throwDOMException(ExceptionState& exceptionState, ErrorCode code) {
if (code == kOK)
return;
- // SecurityError is special-cased, as we want to route those exceptions through ExceptionState::throwSecurityError.
+ // SecurityError is special-cased, as we want to route those exceptions
+ // through ExceptionState::throwSecurityError.
if (code == kSecurityErr) {
exceptionState.throwSecurityError(securityErrorMessage);
return;
« no previous file with comments | « third_party/WebKit/Source/core/fileapi/File.cpp ('k') | third_party/WebKit/Source/core/fileapi/FileReader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698