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

Unified Diff: Source/modules/geolocation/PositionCallback.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/geolocation/PositionCallback.h
diff --git a/Source/modules/geolocation/PositionCallback.h b/Source/modules/geolocation/PositionCallback.h
index 3ab920949dc473b3a11a378d486b9072402d730a..b3ff41e750d165eafabffca02c44f1341d447875 100644
--- a/Source/modules/geolocation/PositionCallback.h
+++ b/Source/modules/geolocation/PositionCallback.h
@@ -33,7 +33,7 @@ namespace WebCore {
class PositionCallback {
public:
virtual ~PositionCallback() { }
- virtual bool handleEvent(Geoposition*) = 0;
+ virtual void handleEvent(Geoposition*) = 0;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698