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

Unified Diff: chrome/browser/google/google_update_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
« no previous file with comments | « base/win/shortcut.cc ('k') | chrome/browser/importer/ie_importer_browsertest_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/google/google_update_win.cc
diff --git a/chrome/browser/google/google_update_win.cc b/chrome/browser/google/google_update_win.cc
index d965613c1d35bd38f42f7c97e08561ed5c49ebfd..2a2ca13bd88fabad970d0bf3c6a172d6d03899d9 100644
--- a/chrome/browser/google/google_update_win.cc
+++ b/chrome/browser/google/google_update_win.cc
@@ -193,7 +193,7 @@ HRESULT CreateGoogleUpdate3WebClass(
if (FAILED(hresult))
return hresult;
- ConfigureProxyBlanket(class_factory.get());
+ ConfigureProxyBlanket(class_factory.Get());
return class_factory->CreateInstance(nullptr, IID_PPV_ARGS(google_update));
}
@@ -515,7 +515,7 @@ HRESULT UpdateCheckDriver::BeginUpdateCheckInternal(
return hresult;
}
- ConfigureProxyBlanket(google_update_.get());
+ ConfigureProxyBlanket(google_update_.Get());
}
// The class was created, so all subsequent errors are reported as:
@@ -533,7 +533,7 @@ HRESULT UpdateCheckDriver::BeginUpdateCheckInternal(
return hresult;
dispatch.Reset();
- ConfigureProxyBlanket(app_bundle.get());
+ ConfigureProxyBlanket(app_bundle.Get());
if (!locale_.empty()) {
// Ignore the result of this since, while setting the display language is
@@ -578,7 +578,7 @@ HRESULT UpdateCheckDriver::BeginUpdateCheckInternal(
hresult = dispatch.QueryInterface(app.Receive());
if (FAILED(hresult))
return hresult;
- ConfigureProxyBlanket(app.get());
+ ConfigureProxyBlanket(app.Get());
hresult = app_bundle->checkForUpdate();
if (FAILED(hresult))
return hresult;
@@ -600,7 +600,7 @@ bool UpdateCheckDriver::GetCurrentState(
*hresult = dispatch.QueryInterface(current_state->Receive());
if (FAILED(*hresult))
return false;
- ConfigureProxyBlanket(current_state->get());
+ ConfigureProxyBlanket(current_state->Get());
LONG value = 0;
*hresult = (*current_state)->get_stateValue(&value);
if (FAILED(*hresult))
« no previous file with comments | « base/win/shortcut.cc ('k') | chrome/browser/importer/ie_importer_browsertest_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698