| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2008, Google Inc. |
| 2 // |
| 3 // Redistribution and use in source and binary forms, with or without |
| 4 // modification, are permitted provided that the following conditions are met: |
| 5 // |
| 6 // 1. Redistributions of source code must retain the above copyright notice, |
| 7 // this list of conditions and the following disclaimer. |
| 8 // 2. Redistributions in binary form must reproduce the above copyright notice, |
| 9 // this list of conditions and the following disclaimer in the documentation |
| 10 // and/or other materials provided with the distribution. |
| 11 // 3. Neither the name of Google Inc. nor the names of its contributors may be |
| 12 // used to endorse or promote products derived from this software without |
| 13 // specific prior written permission. |
| 14 // |
| 15 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 16 // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 17 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
| 18 // EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 19 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 20 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 21 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 22 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 23 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 24 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 // |
| 26 // This file implements a mock location provider and the factory functions for |
| 27 // creating various types of location provider. |
| 28 |
| 29 // TODO(joth): port to chromium |
| 30 #if 0 |
| 31 |
| 32 #include "gears/geolocation/location_provider.h" |
| 33 |
| 34 #include <assert.h> |
| 35 #include "gears/base/common/scoped_refptr.h" // For RefCount |
| 36 |
| 37 void LocationProviderBase::RegisterListener(ListenerInterface *listener, |
| 38 bool request_address) { |
| 39 assert(listener); |
| 40 MutexLock lock(&listeners_mutex_); |
| 41 ListenerMap::iterator iter = listeners_.find(listener); |
| 42 if (iter == listeners_.end()) { |
| 43 std::pair<ListenerMap::iterator, bool> result = |
| 44 listeners_.insert( |
| 45 std::make_pair(listener, |
| 46 std::make_pair(request_address, new RefCount()))); |
| 47 assert(result.second); |
| 48 iter = result.first; |
| 49 } |
| 50 RefCount *count = iter->second.second; |
| 51 assert(count); |
| 52 count->Ref(); |
| 53 } |
| 54 |
| 55 void LocationProviderBase::UnregisterListener(ListenerInterface *listener) { |
| 56 assert(listener); |
| 57 MutexLock lock(&listeners_mutex_); |
| 58 ListenerMap::iterator iter = listeners_.find(listener); |
| 59 if (iter != listeners_.end()) { |
| 60 RefCount *count = iter->second.second; |
| 61 assert(count); |
| 62 if (count->Unref()) { |
| 63 delete count; |
| 64 listeners_.erase(iter); |
| 65 } |
| 66 } |
| 67 } |
| 68 |
| 69 void LocationProviderBase::UpdateListeners() { |
| 70 MutexLock lock(&listeners_mutex_); |
| 71 for (ListenerMap::const_iterator iter = listeners_.begin(); |
| 72 iter != listeners_.end(); |
| 73 ++iter) { |
| 74 iter->first->LocationUpdateAvailable(this); |
| 75 } |
| 76 } |
| 77 |
| 78 void LocationProviderBase::InformListenersOfMovement() { |
| 79 MutexLock lock(&listeners_mutex_); |
| 80 for (ListenerMap::const_iterator iter = listeners_.begin(); |
| 81 iter != listeners_.end(); |
| 82 ++iter) { |
| 83 iter->first->MovementDetected(this); |
| 84 } |
| 85 } |
| 86 |
| 87 LocationProviderBase::ListenerMap *LocationProviderBase::GetListeners() { |
| 88 return &listeners_; |
| 89 } |
| 90 |
| 91 Mutex *LocationProviderBase::GetListenersMutex() { |
| 92 return &listeners_mutex_; |
| 93 } |
| 94 |
| 95 // Win32, Linux and OSX do not have a GPS location provider. |
| 96 #if (defined(WIN32) && !defined(OS_WINCE)) || \ |
| 97 defined(LINUX) || \ |
| 98 defined(OS_MACOSX) |
| 99 |
| 100 LocationProviderBase *NewGpsLocationProvider( |
| 101 BrowsingContext *browsing_context, |
| 102 const std::string16 &reverse_geocode_url, |
| 103 const std::string16 &host_name, |
| 104 const std::string16 &address_language) { |
| 105 return NULL; |
| 106 } |
| 107 |
| 108 #endif |
| 109 |
| 110 #endif // if 0 |
| OLD | NEW |