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

Unified Diff: third_party/WebKit/Source/modules/filesystem/DOMFileSystemSync.cpp

Issue 2040563002: Remove FileError interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fe-dep
Patch Set: Created 4 years, 6 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/filesystem/DOMFileSystemSync.cpp
diff --git a/third_party/WebKit/Source/modules/filesystem/DOMFileSystemSync.cpp b/third_party/WebKit/Source/modules/filesystem/DOMFileSystemSync.cpp
index c5f2012cc7b0b6664044ca5e80a323b8378ed42f..eb40450302aa56ec86c4780b51b6d15a6e5e255b 100644
--- a/third_party/WebKit/Source/modules/filesystem/DOMFileSystemSync.cpp
+++ b/third_party/WebKit/Source/modules/filesystem/DOMFileSystemSync.cpp
@@ -186,6 +186,11 @@ public:
return new LocalErrorCallback(errorCode);
}
+ void handleEvent(DOMException* error) override
jsbell 2016/06/03 21:41:58 This pattern is repeated. I wasn't sure if having
+ {
+ NOTREACHED();
+ }
+
void handleEvent(FileError* error) override
{
ASSERT(error->code() != FileError::OK);

Powered by Google App Engine
This is Rietveld 408576698