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

Unified Diff: ui/gfx/win/direct_manipulation.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 | « ui/gfx/platform_font_win.cc ('k') | ui/gfx/win/direct_write.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/win/direct_manipulation.cc
diff --git a/ui/gfx/win/direct_manipulation.cc b/ui/gfx/win/direct_manipulation.cc
index f391f07e4303fdbbcaadba774f6b92598f07f3a8..c6572f9c3d428f9aa325f019bd5c48f8075198df 100644
--- a/ui/gfx/win/direct_manipulation.cc
+++ b/ui/gfx/win/direct_manipulation.cc
@@ -44,13 +44,13 @@ void DirectManipulationHelper::Initialize(HWND window) {
hr = manager_->GetUpdateManager(IID_PPV_ARGS(update_manager_.Receive()));
CHECK(SUCCEEDED(hr));
- hr = compositor_->SetUpdateManager(update_manager_.get());
+ hr = compositor_->SetUpdateManager(update_manager_.Get());
CHECK(SUCCEEDED(hr));
- hr = frame_info_.QueryFrom(compositor_.get());
+ hr = frame_info_.QueryFrom(compositor_.Get());
CHECK(SUCCEEDED(hr));
- hr = manager_->CreateViewport(frame_info_.get(), window,
+ hr = manager_->CreateViewport(frame_info_.Get(), window,
IID_PPV_ARGS(view_port_outer_.Receive()));
CHECK(SUCCEEDED(hr));
@@ -79,7 +79,7 @@ void DirectManipulationHelper::SetBounds(const gfx::Rect& bounds) {
CHECK(SUCCEEDED(hr));
base::win::ScopedComPtr<IDirectManipulationContent> content_outer;
- hr = content_outer.QueryFrom(primary_content_outer.get());
+ hr = content_outer.QueryFrom(primary_content_outer.Get());
CHECK(SUCCEEDED(hr));
RECT rect = bounds.ToRECT();
« no previous file with comments | « ui/gfx/platform_font_win.cc ('k') | ui/gfx/win/direct_write.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698