blob: 999ce11306d966639f8759a6a8ea856acbe58ec9 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file declares a CoreLocation provider that runs on Mac OS X (10.6).
// Public for testing only - for normal usage this header should not be
// required, as location_provider.h declares the needed factory function.
#ifndef CONTENT_BROWSER_GEOLOCATION_CORE_LOCATION_PROVIDER_MAC_H_
#define CONTENT_BROWSER_GEOLOCATION_CORE_LOCATION_PROVIDER_MAC_H_
#include "content/browser/geolocation/location_provider.h"
#include "content/public/common/geoposition.h"
class CoreLocationDataProviderMac;
class CoreLocationProviderMac : public LocationProviderBase {
public:
explicit CoreLocationProviderMac();
virtual ~CoreLocationProviderMac();
// LocationProvider
virtual bool StartProvider(bool high_accuracy) OVERRIDE;
virtual void StopProvider() OVERRIDE;
virtual void GetPosition(content::Geoposition* position) OVERRIDE;
// Receives new positions and calls UpdateListeners
void SetPosition(content::Geoposition* position);
private:
bool is_updating_;
CoreLocationDataProviderMac* data_provider_;
content::Geoposition position_;
};
#endif // CONTENT_BROWSER_GEOLOCATION_CORE_LOCATION_PROVIDER_MAC_H_