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

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

Powered by Google App Engine
This is Rietveld 408576698