| 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 GeolocationServiceImplContext* |
| 67 RenderFrameHostDelegate::GetGeolocationContext() { |
| 68 return NULL; |
| 69 } |
| 70 |
| 66 #if defined(OS_WIN) | 71 #if defined(OS_WIN) |
| 67 gfx::NativeViewAccessible | 72 gfx::NativeViewAccessible |
| 68 RenderFrameHostDelegate::GetParentNativeViewAccessible() { | 73 RenderFrameHostDelegate::GetParentNativeViewAccessible() { |
| 69 return NULL; | 74 return NULL; |
| 70 } | 75 } |
| 71 #endif // defined(OS_WIN) | 76 #endif // defined(OS_WIN) |
| 72 | 77 |
| 73 } // namespace content | 78 } // namespace content |
| OLD | NEW |