| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| OLD | NEW |