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

Unified Diff: chrome/browser/importer/ie_importer_browsertest_win.cc

Issue 2824773002: Rename ScopedComPtr::get() to ScopedComPtr::Get() (Closed)
Patch Set: Update to 5293966 Created 3 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: chrome/browser/importer/ie_importer_browsertest_win.cc
diff --git a/chrome/browser/importer/ie_importer_browsertest_win.cc b/chrome/browser/importer/ie_importer_browsertest_win.cc
index 8907b9855ba0b7d75e33b0a940618e7ace9da629..e306a436d2619d49fce5e86b64ab87d52821d9e9 100644
--- a/chrome/browser/importer/ie_importer_browsertest_win.cc
+++ b/chrome/browser/importer/ie_importer_browsertest_win.cc
@@ -174,7 +174,7 @@ bool CreateUrlFileWithFavicon(const base::FilePath& file,
if (FAILED(result))
return false;
base::win::ScopedComPtr<IPersistFile> persist_file;
- result = persist_file.QueryFrom(locator.get());
+ result = persist_file.QueryFrom(locator.Get());
if (FAILED(result))
return false;
result = locator->SetURL(url.c_str(), 0);
@@ -184,7 +184,7 @@ bool CreateUrlFileWithFavicon(const base::FilePath& file,
// Write favicon url if specified.
if (!favicon_url.empty()) {
base::win::ScopedComPtr<IPropertySetStorage> property_set_storage;
- if (FAILED(property_set_storage.QueryFrom(locator.get())))
+ if (FAILED(property_set_storage.QueryFrom(locator.Get())))
return false;
base::win::ScopedComPtr<IPropertyStorage> property_storage;
if (FAILED(property_set_storage->Open(FMTID_Intshcut,
« no previous file with comments | « chrome/browser/google/google_update_win.cc ('k') | chrome/browser/media_galleries/win/mtp_device_delegate_impl_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698