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; |