OLD | NEW |
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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 int browser_plugin_instance_id) { | 62 int browser_plugin_instance_id) { |
63 return NULL; | 63 return NULL; |
64 } | 64 } |
65 | 65 |
66 GeolocationServiceContext* | |
67 RenderFrameHostDelegate::GetGeolocationServiceContext() { | |
68 return NULL; | |
69 } | |
70 | |
71 #if defined(OS_WIN) | 66 #if defined(OS_WIN) |
72 gfx::NativeViewAccessible | 67 gfx::NativeViewAccessible |
73 RenderFrameHostDelegate::GetParentNativeViewAccessible() { | 68 RenderFrameHostDelegate::GetParentNativeViewAccessible() { |
74 return NULL; | 69 return NULL; |
75 } | 70 } |
76 #endif // defined(OS_WIN) | 71 #endif // defined(OS_WIN) |
77 | 72 |
78 } // namespace content | 73 } // namespace content |
OLD | NEW |