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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 | 55 |
56 void TestTabContentsView::UpdateDragCursor(WebKit::WebDragOperation operation) { | 56 void TestTabContentsView::UpdateDragCursor(WebKit::WebDragOperation operation) { |
57 } | 57 } |
58 | 58 |
59 void TestTabContentsView::GotFocus() { | 59 void TestTabContentsView::GotFocus() { |
60 } | 60 } |
61 | 61 |
62 void TestTabContentsView::TakeFocus(bool reverse) { | 62 void TestTabContentsView::TakeFocus(bool reverse) { |
63 } | 63 } |
64 | 64 |
65 void TestTabContentsView::UpdatePreferredSize(const gfx::Size& pref_size) { | |
66 } | |
67 | |
68 void TestTabContentsView::CreateView(const gfx::Size& initial_size) { | 65 void TestTabContentsView::CreateView(const gfx::Size& initial_size) { |
69 } | 66 } |
70 | 67 |
71 RenderWidgetHostView* TestTabContentsView::CreateViewForWidget( | 68 RenderWidgetHostView* TestTabContentsView::CreateViewForWidget( |
72 RenderWidgetHost* render_widget_host) { | 69 RenderWidgetHost* render_widget_host) { |
73 return NULL; | 70 return NULL; |
74 } | 71 } |
75 | 72 |
76 gfx::NativeView TestTabContentsView::GetNativeView() const { | 73 gfx::NativeView TestTabContentsView::GetNativeView() const { |
77 return gfx::NativeView(); | 74 return gfx::NativeView(); |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 | 119 |
123 bool TestTabContentsView::IsEventTracking() const { | 120 bool TestTabContentsView::IsEventTracking() const { |
124 return false; | 121 return false; |
125 } | 122 } |
126 | 123 |
127 void TestTabContentsView::CloseTabAfterEventTracking() { | 124 void TestTabContentsView::CloseTabAfterEventTracking() { |
128 } | 125 } |
129 | 126 |
130 void TestTabContentsView::GetViewBounds(gfx::Rect* out) const { | 127 void TestTabContentsView::GetViewBounds(gfx::Rect* out) const { |
131 } | 128 } |
OLD | NEW |