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

Unified Diff: content/browser/geolocation/core_location_data_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
« no previous file with comments | « chrome/test/base/ui_test_utils.cc ('k') | content/browser/geolocation/core_location_data_provider_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/geolocation/core_location_data_provider_mac.h
diff --git a/content/browser/geolocation/core_location_data_provider_mac.h b/content/browser/geolocation/core_location_data_provider_mac.h
index aa4eec37d5773c5b20c877ab88ea8039b70bc8c7..167c5bc728eac5fcda25bcc6e03277d9ce9c7c06 100644
--- a/content/browser/geolocation/core_location_data_provider_mac.h
+++ b/content/browser/geolocation/core_location_data_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.
@@ -12,8 +12,8 @@
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_nsobject.h"
-#include "content/common/geoposition.h"
#include "content/public/browser/browser_thread.h"
+#include "content/public/common/geoposition.h"
#import <Foundation/Foundation.h>
@@ -30,7 +30,7 @@ class CoreLocationDataProviderMac
bool StartUpdating(CoreLocationProviderMac* provider);
void StopUpdating();
- void UpdatePosition(Geoposition *position);
+ void UpdatePosition(content::Geoposition* position);
protected:
friend class base::RefCountedThreadSafe<CoreLocationDataProviderMac>;
@@ -41,7 +41,7 @@ class CoreLocationDataProviderMac
void StartUpdatingTask();
void StopUpdatingTask();
// This must execute in the origin thread (IO thread)
- void PositionUpdated(Geoposition position);
+ void PositionUpdated(content::Geoposition position);
// The wrapper class that supplies this class with position data
scoped_nsobject<CoreLocationWrapperMac> wrapper_;
« no previous file with comments | « chrome/test/base/ui_test_utils.cc ('k') | content/browser/geolocation/core_location_data_provider_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698