Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(427)

Unified Diff: content/browser/geolocation/core_location_provider_mac.h

Issue 10316007: Make the Geoposition helper class public (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix forward-declaration of struct as class. Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/geolocation/core_location_provider_mac.h
diff --git a/content/browser/geolocation/core_location_provider_mac.h b/content/browser/geolocation/core_location_provider_mac.h
index 4ad5ee43f81b0f2cd77db97a2ddeda2e2569ed87..4266d5fc29fb00259ffab90bda4b31b5dfc2daa5 100644
--- a/content/browser/geolocation/core_location_provider_mac.h
+++ b/content/browser/geolocation/core_location_provider_mac.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// 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.
@@ -11,7 +11,7 @@
#pragma once
#include "content/browser/geolocation/location_provider.h"
-#include "content/common/geoposition.h"
+#include "content/public/common/geoposition.h"
class CoreLocationDataProviderMac;
@@ -23,15 +23,15 @@ class CoreLocationProviderMac : public LocationProviderBase {
// LocationProvider
virtual bool StartProvider(bool high_accuracy) OVERRIDE;
virtual void StopProvider() OVERRIDE;
- virtual void GetPosition(Geoposition* position) OVERRIDE;
+ virtual void GetPosition(content::Geoposition* position) OVERRIDE;
// Receives new positions and calls UpdateListeners
- void SetPosition(Geoposition* position);
+ void SetPosition(content::Geoposition* position);
private:
bool is_updating_;
CoreLocationDataProviderMac* data_provider_;
- Geoposition position_;
+ content::Geoposition position_;
};
#endif // CONTENT_BROWSER_GEOLOCATION_CORE_LOCATION_PROVIDER_MAC_H_

Powered by Google App Engine
This is Rietveld 408576698