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

Side by Side Diff: content/browser/frame_host/render_frame_host_delegate.cc

Issue 558073002: Hook up guest browser plugins to the accessibility tree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cross_process_iframes_plugins_3
Patch Set: Rebase Created 6 years, 3 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 <stddef.h> 5 #include <stddef.h>
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/strings/string16.h" 8 #include "base/strings/string16.h"
9 #include "content/browser/frame_host/render_frame_host_delegate.h" 9 #include "content/browser/frame_host/render_frame_host_delegate.h"
10 #include "ui/gfx/native_widget_types.h" 10 #include "ui/gfx/native_widget_types.h"
(...skipping 30 matching lines...) Expand all
41 const MediaResponseCallback& callback) { 41 const MediaResponseCallback& callback) {
42 callback.Run(MediaStreamDevices(), 42 callback.Run(MediaStreamDevices(),
43 MEDIA_DEVICE_INVALID_STATE, 43 MEDIA_DEVICE_INVALID_STATE,
44 scoped_ptr<MediaStreamUI>()); 44 scoped_ptr<MediaStreamUI>());
45 } 45 }
46 46
47 AccessibilityMode RenderFrameHostDelegate::GetAccessibilityMode() const { 47 AccessibilityMode RenderFrameHostDelegate::GetAccessibilityMode() const {
48 return AccessibilityModeOff; 48 return AccessibilityModeOff;
49 } 49 }
50 50
51 RenderFrameHost* RenderFrameHostDelegate::GetGuestByInstanceID(
52 int browser_plugin_instance_id) {
53 return NULL;
54 }
55
51 #if defined(OS_WIN) 56 #if defined(OS_WIN)
52 gfx::NativeViewAccessible 57 gfx::NativeViewAccessible
53 RenderFrameHostDelegate::GetParentNativeViewAccessible() { 58 RenderFrameHostDelegate::GetParentNativeViewAccessible() {
54 return NULL; 59 return NULL;
55 } 60 }
56 #endif // defined(OS_WIN) 61 #endif // defined(OS_WIN)
57 62
58 } // namespace content 63 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_delegate.h ('k') | content/browser/frame_host/render_frame_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698