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

Unified Diff: chrome/utility/importer/ie_importer_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/utility/importer/ie_importer_win.cc
diff --git a/chrome/utility/importer/ie_importer_win.cc b/chrome/utility/importer/ie_importer_win.cc
index 047fb1eb31ccc9778a3980451315939b1f7eb26d..9c5fc303c5502dbd1a9b54e8f26ed425bef475de 100644
--- a/chrome/utility/importer/ie_importer_win.cc
+++ b/chrome/utility/importer/ie_importer_win.cc
@@ -296,7 +296,7 @@ bool LoadInternetShortcut(
return false;
base::win::ScopedComPtr<IPersistFile> persist_file;
- if (FAILED(persist_file.QueryFrom(url_locator.get())))
+ if (FAILED(persist_file.QueryFrom(url_locator.Get())))
return false;
// Loads the Internet Shortcut from persistent storage.
@@ -856,7 +856,7 @@ void IEImporter::ParseFavoritesFolder(
base::win::ScopedComPtr<IUniformResourceLocator> url_locator;
if (!LoadInternetShortcut(*it, &url_locator))
continue;
- GURL url = ReadURLFromInternetShortcut(url_locator.get());
+ GURL url = ReadURLFromInternetShortcut(url_locator.Get());
if (!url.is_valid())
continue;
// Skip default bookmarks. go.microsoft.com redirects to
@@ -867,7 +867,7 @@ void IEImporter::ParseFavoritesFolder(
if (url.host() == "go.microsoft.com")
continue;
// Read favicon.
- UpdateFaviconMap(*it, url, url_locator.get(), &favicon_map);
+ UpdateFaviconMap(*it, url, url_locator.Get(), &favicon_map);
// Make the relative path from the Favorites folder, without the basename.
// ex. Suppose that the Favorites folder is C:\Users\Foo\Favorites.
« no previous file with comments | « chrome/service/cloud_print/print_system_win.cc ('k') | components/storage_monitor/portable_device_watcher_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698