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 90bf9362cea9c11933f003311cf44e579e386c9a..52bb582dbd4831be0dab12a81ab8127adff942fd 100644 |
--- a/third_party/WebKit/Source/core/fileapi/FileError.cpp |
+++ b/third_party/WebKit/Source/core/fileapi/FileError.cpp |
@@ -101,7 +101,7 @@ ExceptionCode ErrorCodeToExceptionCode(ErrorCode code) { |
case kPathExistsErr: |
return kPathExistsError; |
default: |
- ASSERT_NOT_REACHED(); |
+ NOTREACHED(); |
return code; |
} |
} |
@@ -137,7 +137,7 @@ const char* ErrorCodeToMessage(ErrorCode code) { |
case kPathExistsErr: |
return kPathExistsErrorMessage; |
default: |
- ASSERT_NOT_REACHED(); |
+ NOTREACHED(); |
return 0; |
} |
} |