| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 53   return NULL; | 53   return NULL; | 
| 54 } | 54 } | 
| 55 | 55 | 
| 56 #if defined(OS_WIN) | 56 #if defined(OS_WIN) | 
| 57 gfx::NativeViewAccessible | 57 gfx::NativeViewAccessible | 
| 58     RenderFrameHostDelegate::GetParentNativeViewAccessible() { | 58     RenderFrameHostDelegate::GetParentNativeViewAccessible() { | 
| 59   return NULL; | 59   return NULL; | 
| 60 } | 60 } | 
| 61 #endif  // defined(OS_WIN) | 61 #endif  // defined(OS_WIN) | 
| 62 | 62 | 
|  | 63 ScreenOrientationProvider* | 
|  | 64 RenderFrameHostDelegate::GetScreenOrientationProvider() { | 
|  | 65   return NULL; | 
|  | 66 } | 
|  | 67 | 
| 63 }  // namespace content | 68 }  // namespace content | 
| OLD | NEW | 
|---|