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

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

Issue 921473006: GuestView: Fix message routing across embedder navigations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated comments CQ'ing Created 5 years, 10 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 LOG(ERROR) << "RenderFrameHostDelegate::CheckMediaAccessPermission: " 52 LOG(ERROR) << "RenderFrameHostDelegate::CheckMediaAccessPermission: "
53 << "Not supported."; 53 << "Not supported.";
54 return false; 54 return false;
55 } 55 }
56 56
57 AccessibilityMode RenderFrameHostDelegate::GetAccessibilityMode() const { 57 AccessibilityMode RenderFrameHostDelegate::GetAccessibilityMode() const {
58 return AccessibilityModeOff; 58 return AccessibilityModeOff;
59 } 59 }
60 60
61 RenderFrameHost* RenderFrameHostDelegate::GetGuestByInstanceID( 61 RenderFrameHost* RenderFrameHostDelegate::GetGuestByInstanceID(
62 RenderFrameHost* render_frame_host,
62 int browser_plugin_instance_id) { 63 int browser_plugin_instance_id) {
63 return NULL; 64 return NULL;
64 } 65 }
65 66
66 GeolocationServiceContext* 67 GeolocationServiceContext*
67 RenderFrameHostDelegate::GetGeolocationServiceContext() { 68 RenderFrameHostDelegate::GetGeolocationServiceContext() {
68 return NULL; 69 return NULL;
69 } 70 }
70 71
71 #if defined(OS_WIN) 72 #if defined(OS_WIN)
72 gfx::NativeViewAccessible 73 gfx::NativeViewAccessible
73 RenderFrameHostDelegate::GetParentNativeViewAccessible() { 74 RenderFrameHostDelegate::GetParentNativeViewAccessible() {
74 return NULL; 75 return NULL;
75 } 76 }
76 #endif // defined(OS_WIN) 77 #endif // defined(OS_WIN)
77 78
78 } // namespace content 79 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_delegate.h ('k') | content/browser/web_contents/web_contents_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698