OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:positionErrorCallback
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8GeolocationCustom.cpp
139
RefPtr<
PositionErrorCallback
>
positionErrorCallback
= createFunctionOnlyCallback<V8PositionErrorCallback>(args[1], succeeded, args.GetIsolate(), CallbackAllowUndefined | CallbackAllowNull);
149
geolocation->getCurrentPosition(positionCallback.release(),
positionErrorCallback
.release(), positionOptions.release());
162
RefPtr<
PositionErrorCallback
>
positionErrorCallback
= createFunctionOnlyCallback<V8PositionErrorCallback>(args[1], succeeded, args.GetIsolate(), CallbackAllowUndefined | CallbackAllowNull);
172
int watchId = geolocation->watchPosition(positionCallback.release(),
positionErrorCallback
.release(), positionOptions.release());
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geolocation.h
36
#include "modules/geolocation/
PositionErrorCallback
.h"
59
void getCurrentPosition(PassRefPtr<PositionCallback>, PassRefPtr<
PositionErrorCallback
>, PassRefPtr<PositionOptions>);
60
int watchPosition(PassRefPtr<PositionCallback>, PassRefPtr<
PositionErrorCallback
>, PassRefPtr<PositionOptions>);
80
static PassRefPtr<GeoNotifier> create(Geolocation* geolocation, PassRefPtr<PositionCallback> positionCallback, PassRefPtr<
PositionErrorCallback
>
positionErrorCallback
, PassRefPtr<PositionOptions> options) { return adoptRef(new GeoNotifier(geolocation, positionCallback,
positionErrorCallback
, options)); }
97
GeoNotifier(Geolocation*, PassRefPtr<PositionCallback>, PassRefPtr<
PositionErrorCallback
>, PassRefPtr<PositionOptions>);
101
RefPtr<
PositionErrorCallback
> m_errorCallback;
Completed in 78 milliseconds