OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_tab_contents_view.h" | 5 #include "content/test/test_tab_contents_view.h" |
6 | 6 |
7 TestTabContentsView::TestTabContentsView() { | 7 TestTabContentsView::TestTabContentsView() { |
8 } | 8 } |
9 | 9 |
10 TestTabContentsView::~TestTabContentsView() { | 10 TestTabContentsView::~TestTabContentsView() { |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 | 119 |
120 bool TestTabContentsView::IsEventTracking() const { | 120 bool TestTabContentsView::IsEventTracking() const { |
121 return false; | 121 return false; |
122 } | 122 } |
123 | 123 |
124 void TestTabContentsView::CloseTabAfterEventTracking() { | 124 void TestTabContentsView::CloseTabAfterEventTracking() { |
125 } | 125 } |
126 | 126 |
127 void TestTabContentsView::GetViewBounds(gfx::Rect* out) const { | 127 void TestTabContentsView::GetViewBounds(gfx::Rect* out) const { |
128 } | 128 } |
| 129 |
| 130 void TestTabContentsView::InstallOverlayView(gfx::NativeView view) { |
| 131 } |
| 132 |
| 133 void TestTabContentsView::RemoveOverlayView() { |
| 134 } |
OLD | NEW |