| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 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* new_host, |
| 113 RenderViewHost* old_host) { |
| 113 } | 114 } |
| 114 | 115 |
| 115 #if defined(OS_MACOSX) | 116 #if defined(OS_MACOSX) |
| 116 bool TestWebContentsView::IsEventTracking() const { | 117 bool TestWebContentsView::IsEventTracking() const { |
| 117 return false; | 118 return false; |
| 118 } | 119 } |
| 119 | 120 |
| 120 void TestWebContentsView::CloseTabAfterEventTracking() { | 121 void TestWebContentsView::CloseTabAfterEventTracking() { |
| 121 } | 122 } |
| 122 #endif | 123 #endif |
| 123 | 124 |
| 124 } // namespace content | 125 } // namespace content |
| OLD | NEW |