diff options
author | Andrei Popescu <andreip@google.com> | 2009-08-18 15:37:54 +0100 |
---|---|---|
committer | Andrei Popescu <andreip@google.com> | 2009-08-18 15:37:54 +0100 |
commit | d5e1fd5fdf2c3c2bb987470577a7914e016b5f79 (patch) | |
tree | a642cf890ac21845e615446519c9a6315b010ff8 /WebCore/platform | |
parent | b65272ed3bde39fa32c70814ae8dd556b0bc2d7c (diff) | |
download | external_webkit-d5e1fd5fdf2c3c2bb987470577a7914e016b5f79.zip external_webkit-d5e1fd5fdf2c3c2bb987470577a7914e016b5f79.tar.gz external_webkit-d5e1fd5fdf2c3c2bb987470577a7914e016b5f79.tar.bz2 |
Fixes for the OSX build
Diffstat (limited to 'WebCore/platform')
-rwxr-xr-x | WebCore/platform/MockGeolocationService.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/platform/MockGeolocationService.cpp b/WebCore/platform/MockGeolocationService.cpp index 481d588..d26e5b2 100755 --- a/WebCore/platform/MockGeolocationService.cpp +++ b/WebCore/platform/MockGeolocationService.cpp @@ -69,7 +69,7 @@ void MockGeolocationService::setError(PassRefPtr<PositionError> error) makeGeolocationCallbackFromAllInstances(); } -bool MockGeolocationService::startUpdating(PositionOptions* options) +bool MockGeolocationService::startUpdating(PositionOptions*) { m_timer.startOneShot(0); return true; @@ -77,7 +77,7 @@ bool MockGeolocationService::startUpdating(PositionOptions* options) void MockGeolocationService::timerFired(Timer<MockGeolocationService>* timer) { - ASSERT(timer == m_timer); + ASSERT(timer == &m_timer); makeGeolocationCallback(); } |