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

Unified Diff: content/browser/renderer_host/legacy_render_widget_host_win.h

Issue 745313002: Remove implicit conversions from scoped_refptr to T* in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
Index: content/browser/renderer_host/legacy_render_widget_host_win.h
diff --git a/content/browser/renderer_host/legacy_render_widget_host_win.h b/content/browser/renderer_host/legacy_render_widget_host_win.h
index 3222e05c1d41bd77b36adad77ae2f40e92f79eb8..0353d36c2d9529521a623b59ed6728795ff63151 100644
--- a/content/browser/renderer_host/legacy_render_widget_host_win.h
+++ b/content/browser/renderer_host/legacy_render_widget_host_win.h
@@ -92,7 +92,7 @@ class CONTENT_EXPORT LegacyRenderWidgetHostHWND
void UpdateParent(HWND parent);
HWND GetParent();
- IAccessible* window_accessible() { return window_accessible_; }
+ IAccessible* window_accessible() { return window_accessible_.get(); }
// Functions to show and hide the window.
void Show();

Powered by Google App Engine
This is Rietveld 408576698