diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-10 23:53:36 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-10 23:53:36 +0000 |
commit | f574e6727a27ac819480246a8541b2acc1394ae7 (patch) | |
tree | b28bfbb4ef4153b555ebffe79dc76079911eeb9b /views/widget/widget_win.cc | |
parent | 0c2cba5686b58a90173084128b0e0b3b8534b995 (diff) | |
download | chromium_src-f574e6727a27ac819480246a8541b2acc1394ae7.zip chromium_src-f574e6727a27ac819480246a8541b2acc1394ae7.tar.gz chromium_src-f574e6727a27ac819480246a8541b2acc1394ae7.tar.bz2 |
views: Include base/win/scope_comptr.h instead of base/scoped_comptr_win.h
Also add base::win:: to ScopedComPtr where necessary.
BUG=None
TEST=trybots
Review URL: http://codereview.chromium.org/5625006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68910 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/widget/widget_win.cc')
-rw-r--r-- | views/widget/widget_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/widget/widget_win.cc b/views/widget/widget_win.cc index 9b30754..b94efa3 100644 --- a/views/widget/widget_win.cc +++ b/views/widget/widget_win.cc @@ -622,7 +622,7 @@ LRESULT WidgetWin::OnGetObject(UINT uMsg, WPARAM w_param, LPARAM l_param) { // Accessibility readers will send an OBJID_CLIENT message if (OBJID_CLIENT == l_param) { // Retrieve MSAA dispatch object for the root view. - ScopedComPtr<IAccessible> root( + base::win::ScopedComPtr<IAccessible> root( ViewAccessibility::GetAccessibleForView(GetRootView())); // Create a reference that MSAA will marshall to the client. |