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

Unified Diff: Source/modules/filesystem/EntriesCallback.h

Issue 111603006: Simplify invokeCallback() and support void return values for IDL callbacks (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years 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: Source/modules/filesystem/EntriesCallback.h
diff --git a/Source/modules/filesystem/EntriesCallback.h b/Source/modules/filesystem/EntriesCallback.h
index f8fea3868717fce6de0cc2a6c6ab1266f6e3f3c0..4bb7135350995e905d66ae8726d7aea47fec7f81 100644
--- a/Source/modules/filesystem/EntriesCallback.h
+++ b/Source/modules/filesystem/EntriesCallback.h
@@ -41,7 +41,7 @@ typedef Vector<RefPtr<Entry> > EntryVector;
class EntriesCallback {
public:
virtual ~EntriesCallback() { }
- virtual bool handleEvent(const EntryVector&) = 0;
+ virtual void handleEvent(const EntryVector&) = 0;
};
} // namespace

Powered by Google App Engine
This is Rietveld 408576698