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

Unified Diff: Source/modules/mediastream/RTCErrorCallback.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/mediastream/RTCErrorCallback.h
diff --git a/Source/modules/mediastream/RTCErrorCallback.h b/Source/modules/mediastream/RTCErrorCallback.h
index dd7b840dfe0b5bf6b3ae34214e025835c469f92f..12b58c7c0087396055d0236a72c62b0c24449d1d 100644
--- a/Source/modules/mediastream/RTCErrorCallback.h
+++ b/Source/modules/mediastream/RTCErrorCallback.h
@@ -38,7 +38,7 @@ namespace WebCore {
class RTCErrorCallback {
public:
virtual ~RTCErrorCallback() { }
- virtual bool handleEvent(const String& errorInformation) = 0;
+ virtual void handleEvent(const String& errorInformation) = 0;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698