Chromium Code Reviews| Index: third_party/WebKit/Source/core/fileapi/File.h |
| diff --git a/third_party/WebKit/Source/core/fileapi/File.h b/third_party/WebKit/Source/core/fileapi/File.h |
| index c70d7f3a5dd3dff79b6657f5311e4ab852cf54f9..0bfe2951205006f58cec8525d90895582e7c804a 100644 |
| --- a/third_party/WebKit/Source/core/fileapi/File.h |
| +++ b/third_party/WebKit/Source/core/fileapi/File.h |
| @@ -123,7 +123,9 @@ class CORE_EXPORT File final : public Blob { |
| } |
| KURL FileSystemURL() const { |
| - ASSERT(HasValidFileSystemURL()); |
| +#if DCHECK_IS_ON() |
| + DCHECK(HasValidFileSystemURL()); |
| +#endif |
| return file_system_url_; |
| } |
| @@ -161,7 +163,9 @@ class CORE_EXPORT File final : public Blob { |
| void AppendTo(BlobData&) const override; |
| const String& GetPath() const { |
| - ASSERT(HasValidFilePath()); |
| +#if DCHECK_IS_ON() |
| + DCHECK(HasValidFilePath()); |
| +#endif |
|
alancutter (OOO until 2018)
2017/04/10 00:23:41
Why are these guards necessary?
Hwanseung Lee
2017/04/10 15:01:31
HasValidFilePath() is inside of "#if DCHECK_IS_ON(
|
| return path_; |
| } |
| const String& name() const { return name_; } |