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

Unified Diff: Source/modules/mediastream/RTCSessionDescriptionCallback.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/RTCSessionDescriptionCallback.h
diff --git a/Source/modules/mediastream/RTCSessionDescriptionCallback.h b/Source/modules/mediastream/RTCSessionDescriptionCallback.h
index 1a9c091226af9c160818e0bca42be1f3569db01e..91625cbf496277392144f4d115015ec385b587d0 100644
--- a/Source/modules/mediastream/RTCSessionDescriptionCallback.h
+++ b/Source/modules/mediastream/RTCSessionDescriptionCallback.h
@@ -38,7 +38,7 @@ class RTCSessionDescription;
class RTCSessionDescriptionCallback {
public:
virtual ~RTCSessionDescriptionCallback() { }
- virtual bool handleEvent(RTCSessionDescription*) = 0;
+ virtual void handleEvent(RTCSessionDescription*) = 0;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698