HomeSort by relevance Sort by last modified time
    Searched defs:geolocation (Results 1 - 11 of 11) sorted by null

  /external/chromium/chrome/browser/geolocation/
geolocation_prefs.cc 5 #include "chrome/browser/geolocation/geolocation_prefs.h"
7 #include "content/browser/geolocation/access_token_store.h"
9 namespace geolocation { namespace
11 // Fan out to all geolocation sub-components that use prefs.
14 } // namespace geolocation
geolocation_prefs.h 11 namespace geolocation { namespace
  /external/chromium_org/chrome/browser/geolocation/
geolocation_prefs.cc 5 #include "chrome/browser/geolocation/geolocation_prefs.h"
7 #include "chrome/browser/geolocation/chrome_access_token_store.h"
8 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_factory.h"
10 namespace geolocation { namespace
12 // Fan out to all geolocation sub-components that use prefs.
16 } // namespace geolocation
geolocation_prefs.h 10 namespace geolocation { namespace
  /external/chromium_org/third_party/WebKit/public/web/
WebGeolocationPermissionRequest.h 33 class Geolocation;
39 // WebGeolocationPermissionRequest encapsulates a WebCore Geolocation object and represents
40 // a request from WebCore for permission to be determined for that Geolocation object.
41 // The underlying Geolocation object is guaranteed to be valid until the invocation of
50 WebGeolocationPermissionRequest(WebCore::Geolocation* geolocation)
51 : m_private(geolocation)
55 WebCore::Geolocation* geolocation() const { return m_private; } function in class:WebKit::WebGeolocationPermissionRequest
59 WebCore::Geolocation* m_private
    [all...]
  /external/chromium_org/chrome/test/webdriver/commands/
html5_location_commands.cc 30 scoped_ptr<base::DictionaryValue> geolocation; local
31 Error* error = session_->GetGeolocation(&geolocation);
36 response->SetValue(geolocation.release());
40 const base::DictionaryValue* geolocation; local
41 if (!GetDictionaryParameter("location", &geolocation)) {
46 Error* error = session_->OverrideGeolocation(geolocation);
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
NavigatorGeolocation.cpp 24 #include "modules/geolocation/NavigatorGeolocation.h"
29 #include "modules/geolocation/Geolocation.h"
57 Geolocation* NavigatorGeolocation::geolocation(Navigator* navigator) function in class:WebCore::NavigatorGeolocation
59 return NavigatorGeolocation::from(navigator)->geolocation();
62 Geolocation* NavigatorGeolocation::geolocation() const function in class:WebCore::NavigatorGeolocation
65 m_geolocation = Geolocation::create(frame()->document());
Geolocation.cpp 29 #include "modules/geolocation/Geolocation.h"
34 #include "modules/geolocation/Geoposition.h"
37 #include "modules/geolocation/Coordinates.h"
38 #include "modules/geolocation/GeolocationController.h"
39 #include "modules/geolocation/GeolocationError.h"
40 #include "modules/geolocation/GeolocationPosition.h"
41 #include "modules/geolocation/PositionError.h"
45 static const char permissionDeniedErrorMessage[] = "User denied Geolocation";
46 static const char failedToStartServiceErrorMessage[] = "Failed to start Geolocation service"
236 RefPtr<Geolocation> geolocation = adoptRef(new Geolocation(context)); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebGeolocationPermissionRequestManager.cpp 33 class Geolocation;
38 typedef HashMap<Geolocation*, int> GeolocationIdMap;
39 typedef HashMap<int, Geolocation*> IdGeolocationMap;
53 Geolocation* geolocation = permissionRequest.geolocation(); local
54 ASSERT(!m_private->m_geolocationIdMap.contains(geolocation));
56 m_private->m_geolocationIdMap.add(geolocation, id);
57 m_private->m_idGeolocationMap.add(id, geolocation);
63 Geolocation* geolocation = permissionRequest.geolocation() local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8GeolocationCustom.cpp 35 #include "modules/geolocation/Geolocation.h"
148 Geolocation* geolocation = V8Geolocation::toNative(args.Holder()); local
149 geolocation->getCurrentPosition(positionCallback.release(), positionErrorCallback.release(), positionOptions.release());
171 Geolocation* geolocation = V8Geolocation::toNative(args.Holder()); local
172 int watchId = geolocation->watchPosition(positionCallback.release(), positionErrorCallback.release(), positionOptions.release());
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
OverridesView.js 447 var geolocation = WebInspector.OverridesSupport.GeolocationPosition.parseSetting(geolocationSetting); variable
448 var p = this._createCheckboxSetting(WebInspector.UIString("Override Geolocation"), WebInspector.settings.overrideGeolocation, this._geolocationOverrideCheckboxClicked.bind(this));
451 var geolocationSectionElement = this._createGeolocationOverrideElement(geolocation);
475 * @param {?WebInspector.OverridesSupport.GeolocationPosition} geolocation
478 _setGeolocationPosition: function(geolocation, userInputModified)
480 if (!geolocation)
484 this._latitudeElement.value = geolocation.latitude;
485 this._longitudeElement.value = geolocation.longitude;
488 var value = geolocation.toSetting();
493 * @param {WebInspector.OverridesSupport.GeolocationPosition} geolocation
    [all...]

Completed in 341 milliseconds