| 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/test/test_web_contents_view.h" | 5 #include "content/test/test_web_contents_view.h" |
| 6 | 6 |
| 7 namespace content { | 7 namespace content { |
| 8 | 8 |
| 9 TestWebContentsView::TestWebContentsView() { | 9 TestWebContentsView::TestWebContentsView() { |
| 10 } | 10 } |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 RenderWidgetHostView* TestWebContentsView::CreateViewForWidget( | 96 RenderWidgetHostView* TestWebContentsView::CreateViewForWidget( |
| 97 RenderWidgetHost* render_widget_host) { | 97 RenderWidgetHost* render_widget_host) { |
| 98 return NULL; | 98 return NULL; |
| 99 } | 99 } |
| 100 | 100 |
| 101 RenderWidgetHostView* TestWebContentsView::CreateViewForPopupWidget( | 101 RenderWidgetHostView* TestWebContentsView::CreateViewForPopupWidget( |
| 102 RenderWidgetHost* render_widget_host) { | 102 RenderWidgetHost* render_widget_host) { |
| 103 return NULL; | 103 return NULL; |
| 104 } | 104 } |
| 105 | 105 |
| 106 void TestWebContentsView::SetPageTitle(const string16& title) { | 106 void TestWebContentsView::SetPageTitle(const base::string16& title) { |
| 107 } | 107 } |
| 108 | 108 |
| 109 void TestWebContentsView::RenderViewCreated(RenderViewHost* host) { | 109 void TestWebContentsView::RenderViewCreated(RenderViewHost* host) { |
| 110 } | 110 } |
| 111 | 111 |
| 112 void TestWebContentsView::RenderViewSwappedIn(RenderViewHost* host) { | 112 void TestWebContentsView::RenderViewSwappedIn(RenderViewHost* host) { |
| 113 } | 113 } |
| 114 | 114 |
| 115 void TestWebContentsView::SetOverscrollControllerEnabled(bool enabled) { | 115 void TestWebContentsView::SetOverscrollControllerEnabled(bool enabled) { |
| 116 } | 116 } |
| 117 | 117 |
| 118 #if defined(OS_MACOSX) | 118 #if defined(OS_MACOSX) |
| 119 bool TestWebContentsView::IsEventTracking() const { | 119 bool TestWebContentsView::IsEventTracking() const { |
| 120 return false; | 120 return false; |
| 121 } | 121 } |
| 122 | 122 |
| 123 void TestWebContentsView::CloseTabAfterEventTracking() { | 123 void TestWebContentsView::CloseTabAfterEventTracking() { |
| 124 } | 124 } |
| 125 #endif | 125 #endif |
| 126 | 126 |
| 127 } // namespace content | 127 } // namespace content |
| OLD | NEW |