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

Side by Side Diff: content/browser/renderer_host/render_widget_host_impl.cc

Issue 1815563006: Remove [SG]etParentNativeViewAccessible (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_plugin_quirks
Patch Set: rebase Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/renderer_host/render_widget_host_impl.h" 5 #include "content/browser/renderer_host/render_widget_host_impl.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 #include <set> 8 #include <set>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 2172 matching lines...) Expand 10 before | Expand all | Expand 10 after
2183 RenderWidgetHostImpl::GetRootBrowserAccessibilityManager() { 2183 RenderWidgetHostImpl::GetRootBrowserAccessibilityManager() {
2184 return delegate_ ? delegate_->GetRootBrowserAccessibilityManager() : NULL; 2184 return delegate_ ? delegate_->GetRootBrowserAccessibilityManager() : NULL;
2185 } 2185 }
2186 2186
2187 BrowserAccessibilityManager* 2187 BrowserAccessibilityManager*
2188 RenderWidgetHostImpl::GetOrCreateRootBrowserAccessibilityManager() { 2188 RenderWidgetHostImpl::GetOrCreateRootBrowserAccessibilityManager() {
2189 return delegate_ ? 2189 return delegate_ ?
2190 delegate_->GetOrCreateRootBrowserAccessibilityManager() : NULL; 2190 delegate_->GetOrCreateRootBrowserAccessibilityManager() : NULL;
2191 } 2191 }
2192 2192
2193 #if defined(OS_WIN)
2194 gfx::NativeViewAccessible
2195 RenderWidgetHostImpl::GetParentNativeViewAccessible() {
2196 return delegate_ ? delegate_->GetParentNativeViewAccessible() : NULL;
2197 }
2198 #endif
2199
2200 } // namespace content 2193 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_impl.h ('k') | content/browser/renderer_host/render_widget_host_view_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698