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

Unified Diff: media/base/win/mf_helpers.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 | « media/audio/win/core_audio_util_win_unittest.cc ('k') | media/capture/video/win/filter_base_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/win/mf_helpers.cc
diff --git a/media/base/win/mf_helpers.cc b/media/base/win/mf_helpers.cc
index c88f57118c03cab54c3c01120b6315289769a0ae..b04ef674987ec9b8f2de25c5105b285e999cf4f2 100644
--- a/media/base/win/mf_helpers.cc
+++ b/media/base/win/mf_helpers.cc
@@ -35,7 +35,7 @@ base::win::ScopedComPtr<IMFSample> CreateEmptySampleWithBuffer(
RETURN_ON_HR_FAILURE(hr, "Failed to create memory buffer for sample",
base::win::ScopedComPtr<IMFSample>());
- hr = sample->AddBuffer(buffer.get());
+ hr = sample->AddBuffer(buffer.Get());
RETURN_ON_HR_FAILURE(hr, "Failed to add buffer to sample",
base::win::ScopedComPtr<IMFSample>());
« no previous file with comments | « media/audio/win/core_audio_util_win_unittest.cc ('k') | media/capture/video/win/filter_base_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698