| Index: chrome/browser/renderer_host/render_widget_host_view_win.cc
|
| diff --git a/chrome/browser/renderer_host/render_widget_host_view_win.cc b/chrome/browser/renderer_host/render_widget_host_view_win.cc
|
| index 52ef7d2f4df706ba3d18010fe9964bf927e03674..9a92002f0904b9f36acd75ef82e431b3f0b396ff 100644
|
| --- a/chrome/browser/renderer_host/render_widget_host_view_win.cc
|
| +++ b/chrome/browser/renderer_host/render_widget_host_view_win.cc
|
| @@ -10,8 +10,8 @@
|
| #include "base/i18n/rtl.h"
|
| #include "base/metrics/histogram.h"
|
| #include "base/process_util.h"
|
| -#include "base/scoped_comptr_win.h"
|
| #include "base/threading/thread.h"
|
| +#include "base/win/scoped_comptr.h"
|
| #include "base/win/scoped_gdi_object.h"
|
| #include "base/win/wrapped_window_proc.h"
|
| #include "chrome/browser/accessibility/browser_accessibility_manager.h"
|
| @@ -1659,7 +1659,7 @@ LRESULT RenderWidgetHostViewWin::OnGetObject(UINT message, WPARAM wparam,
|
| BrowserAccessibilityManager::Create(m_hWnd, loading_tree, this));
|
| }
|
|
|
| - ScopedComPtr<IAccessible> root(
|
| + base::win::ScopedComPtr<IAccessible> root(
|
| browser_accessibility_manager_->GetRoot()->toBrowserAccessibilityWin());
|
| if (root.get())
|
| return LresultFromObject(IID_IAccessible, wparam, root.Detach());
|
|
|