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

Unified Diff: ui/accessibility/platform/ax_platform_node_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 | « remoting/host/win/rdp_client_window.cc ('k') | ui/accessibility/platform/ax_platform_node_win_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accessibility/platform/ax_platform_node_win.cc
diff --git a/ui/accessibility/platform/ax_platform_node_win.cc b/ui/accessibility/platform/ax_platform_node_win.cc
index e703233c9c9bce761442320fdcd71bca9c54562d..9aa621d744534c20dd673fb7bb182d82566a2a4c 100644
--- a/ui/accessibility/platform/ax_platform_node_win.cc
+++ b/ui/accessibility/platform/ax_platform_node_win.cc
@@ -184,7 +184,7 @@ AXPlatformNode* AXPlatformNode::FromNativeViewAccessible(
return nullptr;
base::win::ScopedComPtr<AXPlatformNodeWin> ax_platform_node;
accessible->QueryInterface(ax_platform_node.Receive());
- return ax_platform_node.get();
+ return ax_platform_node.Get();
}
//
@@ -258,7 +258,7 @@ int AXPlatformNodeWin::GetIndexInParent() {
if (S_OK == parent_accessible->get_accChild(childid_index,
child_dispatch.Receive()) &&
S_OK == child_dispatch.QueryInterface(child_accessible.Receive())) {
- if (child_accessible.get() == this)
+ if (child_accessible.Get() == this)
return index - 1;
}
}
« no previous file with comments | « remoting/host/win/rdp_client_window.cc ('k') | ui/accessibility/platform/ax_platform_node_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698