| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/browser/renderer_host/render_view_host_delegate.h" | 5 #include "content/browser/renderer_host/render_view_host_delegate.h" |
| 6 | 6 |
| 7 #include "content/public/common/web_preferences.h" | 7 #include "content/public/common/web_preferences.h" |
| 8 #include "url/gurl.h" | 8 #include "url/gurl.h" |
| 9 | 9 |
| 10 namespace content { | 10 namespace content { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 SessionStorageNamespaceMap | 30 SessionStorageNamespaceMap |
| 31 RenderViewHostDelegate::GetSessionStorageNamespaceMap() { | 31 RenderViewHostDelegate::GetSessionStorageNamespaceMap() { |
| 32 return SessionStorageNamespaceMap(); | 32 return SessionStorageNamespaceMap(); |
| 33 } | 33 } |
| 34 | 34 |
| 35 FrameTree* RenderViewHostDelegate::GetFrameTree() { | 35 FrameTree* RenderViewHostDelegate::GetFrameTree() { |
| 36 return NULL; | 36 return NULL; |
| 37 } | 37 } |
| 38 | 38 |
| 39 double RenderViewHostDelegate::GetPendingPageZoomLevel() { |
| 40 return 0.0; |
| 41 } |
| 42 |
| 39 bool RenderViewHostDelegate::IsNeverVisible() { | 43 bool RenderViewHostDelegate::IsNeverVisible() { |
| 40 return false; | 44 return false; |
| 41 } | 45 } |
| 42 | 46 |
| 43 bool RenderViewHostDelegate::IsVirtualKeyboardRequested() { | 47 bool RenderViewHostDelegate::IsVirtualKeyboardRequested() { |
| 44 return false; | 48 return false; |
| 45 } | 49 } |
| 46 | 50 |
| 47 bool RenderViewHostDelegate::IsOverridingUserAgent() { | 51 bool RenderViewHostDelegate::IsOverridingUserAgent() { |
| 48 return false; | 52 return false; |
| 49 } | 53 } |
| 50 | 54 |
| 51 } // namespace content | 55 } // namespace content |
| OLD | NEW |