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

Unified Diff: chrome/browser/geolocation/win7_location_api_win.cc

Issue 6115004: Call CoInitialize before using Win 7 Location API. (Closed) Base URL: jknotten@fandorin.lon:/usr/local/google/chromium/src@GeolocationCleanUp
Patch Set: Fix unit test. Created 9 years, 11 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: chrome/browser/geolocation/win7_location_api_win.cc
diff --git a/chrome/browser/geolocation/win7_location_api_win.cc b/chrome/browser/geolocation/win7_location_api_win.cc
index 7b6c3ca352a9c052b47e92198ef8c8e43ce25ae2..0df55b5de81e71091e866386e856a7e3e8a1fdae 100644
--- a/chrome/browser/geolocation/win7_location_api_win.cc
+++ b/chrome/browser/geolocation/win7_location_api_win.cc
@@ -9,6 +9,7 @@
#include "base/file_path.h"
#include "base/logging.h"
#include "base/path_service.h"
+#include "base/scoped_ptr.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/geoposition.h"
@@ -26,13 +27,18 @@ HINSTANCE LoadWin7Library(const string16& lib_name) {
}
}
-Win7LocationApi::Win7LocationApi(
- HINSTANCE prop_library,
+Win7LocationApi::Win7LocationApi()
+ : prop_lib_(0),
+ PropVariantToDouble_function_(0),
+ locator_(0) {
+}
+
+void Win7LocationApi::Init(HINSTANCE prop_library,
PropVariantToDoubleFunction PropVariantToDouble_function,
- ILocation* locator)
- : prop_lib_(prop_library),
- PropVariantToDouble_function_(PropVariantToDouble_function),
- locator_(locator) {
+ ILocation* locator) {
+ prop_lib_ = prop_library;
+ PropVariantToDouble_function_ = PropVariantToDouble_function;
+ locator_ = locator;
}
Win7LocationApi::~Win7LocationApi() {
@@ -44,6 +50,8 @@ Win7LocationApi* Win7LocationApi::Create() {
if (!CommandLine::ForCurrentProcess()
->HasSwitch(switches::kExperimentalLocationFeatures))
return NULL;
+
+ scoped_ptr<Win7LocationApi> result(new Win7LocationApi);
// Load probsys.dll
string16 lib_needed = L"propsys.dll";
HINSTANCE prop_lib = LoadWin7Library(lib_needed);
@@ -69,9 +77,8 @@ Win7LocationApi* Win7LocationApi::Create() {
}
IID reports_needed[] = { IID_ILatLongReport };
result_type = locator->RequestPermissions(NULL, reports_needed, 1, TRUE);
- return new Win7LocationApi(prop_lib,
- PropVariantToDouble_function,
- locator);
+ result->Init(prop_lib, PropVariantToDouble_function, locator);
+ return result.release();
}
void Win7LocationApi::GetPosition(Geoposition* position) {

Powered by Google App Engine
This is Rietveld 408576698