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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 return false; | 101 return false; |
102 } | 102 } |
103 | 103 |
104 void TestWebContentsView::CloseTabAfterEventTracking() { | 104 void TestWebContentsView::CloseTabAfterEventTracking() { |
105 } | 105 } |
106 | 106 |
107 gfx::Rect TestWebContentsView::GetViewBounds() const { | 107 gfx::Rect TestWebContentsView::GetViewBounds() const { |
108 return gfx::Rect(); | 108 return gfx::Rect(); |
109 } | 109 } |
110 | 110 |
| 111 #if defined(OS_MACOSX) |
| 112 void TestWebContentsView::SetAllowOverlappingViews(bool overlapping) { |
| 113 } |
| 114 #endif |
| 115 |
111 } // namespace content | 116 } // namespace content |
OLD | NEW |