1 /* 2 * Copyright (C) 2008 Holger Hans Peter Freyther 3 * Copyright (C) 2011 Samsung Electronics 4 * 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Library General Public 7 * License as published by the Free Software Foundation; either 8 * version 2 of the License, or (at your option) any later version. 9 * 10 * This library is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * Library General Public License for more details. 14 * 15 * You should have received a copy of the GNU Library General Public License 16 * along with this library; see the file COPYING.LIB. If not, write to 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * Boston, MA 02110-1301, USA. 19 */ 20 21 #ifndef GeolocationServiceEfl_h 22 #define GeolocationServiceEfl_h 23 24 #if ENABLE(GEOLOCATION) 25 #include "GeolocationService.h" 26 #include "Geoposition.h" 27 #include "PositionError.h" 28 #include "RefPtr.h" 29 30 namespace WebCore { 31 32 class GeolocationServiceEfl : public GeolocationService { 33 public: 34 static GeolocationService* create(GeolocationServiceClient*); 35 ~GeolocationServiceEfl(); 36 37 virtual bool startUpdating(PositionOptions*); 38 virtual void stopUpdating(); 39 40 virtual void suspend(); 41 virtual void resume(); 42 43 virtual Geoposition* lastPosition() const; 44 virtual PositionError* lastError() const; 45 46 private: 47 GeolocationServiceEfl(GeolocationServiceClient*); 48 49 RefPtr<Geoposition> m_lastPosition; 50 RefPtr<PositionError> m_lastError; 51 52 }; 53 54 } 55 #endif // ENABLE(GEOLOCATION) 56 #endif 57