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

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

Issue 1411063007: Add mojo::StrongBindingSet and use it in GeolocationServiceContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 "ipc/ipc_message.h" 10 #include "ipc/ipc_message.h"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 AccessibilityMode RenderFrameHostDelegate::GetAccessibilityMode() const { 54 AccessibilityMode RenderFrameHostDelegate::GetAccessibilityMode() const {
55 return AccessibilityModeOff; 55 return AccessibilityModeOff;
56 } 56 }
57 57
58 RenderFrameHost* RenderFrameHostDelegate::GetGuestByInstanceID( 58 RenderFrameHost* RenderFrameHostDelegate::GetGuestByInstanceID(
59 RenderFrameHost* render_frame_host, 59 RenderFrameHost* render_frame_host,
60 int browser_plugin_instance_id) { 60 int browser_plugin_instance_id) {
61 return NULL; 61 return NULL;
62 } 62 }
63 63
64 GeolocationServiceContext*
65 RenderFrameHostDelegate::GetGeolocationServiceContext() {
66 return NULL;
67 }
68
69 WakeLockServiceContext* RenderFrameHostDelegate::GetWakeLockServiceContext() { 64 WakeLockServiceContext* RenderFrameHostDelegate::GetWakeLockServiceContext() {
70 return nullptr; 65 return nullptr;
71 } 66 }
72 67
73 bool RenderFrameHostDelegate::ShouldRouteMessageEvent( 68 bool RenderFrameHostDelegate::ShouldRouteMessageEvent(
74 RenderFrameHost* target_rfh, 69 RenderFrameHost* target_rfh,
75 SiteInstance* source_site_instance) const { 70 SiteInstance* source_site_instance) const {
76 return false; 71 return false;
77 } 72 }
78 73
79 #if defined(OS_WIN) 74 #if defined(OS_WIN)
80 gfx::NativeViewAccessible 75 gfx::NativeViewAccessible
81 RenderFrameHostDelegate::GetParentNativeViewAccessible() { 76 RenderFrameHostDelegate::GetParentNativeViewAccessible() {
82 return NULL; 77 return NULL;
83 } 78 }
84 #endif // defined(OS_WIN) 79 #endif // defined(OS_WIN)
85 80
86 } // namespace content 81 } // 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