Home
last modified time | relevance | path

Searched refs:positionCallback (Results 1 – 3 of 3) sorted by relevance

/external/webkit/WebCore/bindings/js/
DJSGeolocationCustom.cpp141 RefPtr<PositionCallback> positionCallback = createPositionCallback(exec, args.at(0)); in getCurrentPosition() local
144 ASSERT(positionCallback); in getCurrentPosition()
155 …m_impl->getCurrentPosition(positionCallback.release(), positionErrorCallback.release(), positionOp… in getCurrentPosition()
163 RefPtr<PositionCallback> positionCallback = createPositionCallback(exec, args.at(0)); in watchPosition() local
166 ASSERT(positionCallback); in watchPosition()
177 …int watchID = m_impl->watchPosition(positionCallback.release(), positionErrorCallback.release(), p… in watchPosition()
/external/webkit/WebCore/bindings/v8/custom/
DV8GeolocationCustom.cpp186 RefPtr<PositionCallback> positionCallback = createPositionCallback(args[0], succeeded); in CALLBACK_FUNC_DECL() local
189 ASSERT(positionCallback); in CALLBACK_FUNC_DECL()
201 …geolocation->getCurrentPosition(positionCallback.release(), positionErrorCallback.release(), posit… in CALLBACK_FUNC_DECL()
211 RefPtr<PositionCallback> positionCallback = createPositionCallback(args[0], succeeded); in CALLBACK_FUNC_DECL() local
214 ASSERT(positionCallback); in CALLBACK_FUNC_DECL()
226 …int watchId = geolocation->watchPosition(positionCallback.release(), positionErrorCallback.release… in CALLBACK_FUNC_DECL()
/external/webkit/WebCore/page/
DGeolocation.h83positionCallback, PassRefPtr<PositionErrorCallback> positionErrorCallback, PassRefPtr<PositionOpti… in create() argument