OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "content/test/test_tab_contents_view.h" |
| 6 |
| 7 TestTabContentsView::TestTabContentsView() { |
| 8 } |
| 9 |
| 10 TestTabContentsView::~TestTabContentsView() { |
| 11 } |
| 12 |
| 13 void TestTabContentsView::CreateNewWindow( |
| 14 int route_id, |
| 15 const ViewHostMsg_CreateWindow_Params& params) { |
| 16 } |
| 17 |
| 18 void TestTabContentsView::CreateNewWidget(int route_id, |
| 19 WebKit::WebPopupType popup_type) { |
| 20 } |
| 21 |
| 22 void TestTabContentsView::CreateNewFullscreenWidget(int route_id) { |
| 23 } |
| 24 |
| 25 void TestTabContentsView::ShowCreatedWindow(int route_id, |
| 26 WindowOpenDisposition disposition, |
| 27 const gfx::Rect& initial_pos, |
| 28 bool user_gesture) { |
| 29 } |
| 30 |
| 31 void TestTabContentsView::ShowCreatedWidget(int route_id, |
| 32 const gfx::Rect& initial_pos) { |
| 33 } |
| 34 |
| 35 void TestTabContentsView::ShowCreatedFullscreenWidget(int route_id) { |
| 36 } |
| 37 |
| 38 void TestTabContentsView::ShowContextMenu(const ContextMenuParams& params) { |
| 39 } |
| 40 |
| 41 void TestTabContentsView::ShowPopupMenu(const gfx::Rect& bounds, |
| 42 int item_height, |
| 43 double item_font_size, |
| 44 int selected_item, |
| 45 const std::vector<WebMenuItem>& items, |
| 46 bool right_aligned) { |
| 47 } |
| 48 |
| 49 void TestTabContentsView::StartDragging( |
| 50 const WebDropData& drop_data, |
| 51 WebKit::WebDragOperationsMask allowed_ops, |
| 52 const SkBitmap& image, |
| 53 const gfx::Point& image_offset) { |
| 54 } |
| 55 |
| 56 void TestTabContentsView::UpdateDragCursor(WebKit::WebDragOperation operation) { |
| 57 } |
| 58 |
| 59 void TestTabContentsView::GotFocus() { |
| 60 } |
| 61 |
| 62 void TestTabContentsView::TakeFocus(bool reverse) { |
| 63 } |
| 64 |
| 65 void TestTabContentsView::UpdatePreferredSize(const gfx::Size& pref_size) { |
| 66 } |
| 67 |
| 68 void TestTabContentsView::CreateView(const gfx::Size& initial_size) { |
| 69 } |
| 70 |
| 71 RenderWidgetHostView* TestTabContentsView::CreateViewForWidget( |
| 72 RenderWidgetHost* render_widget_host) { |
| 73 return NULL; |
| 74 } |
| 75 |
| 76 gfx::NativeView TestTabContentsView::GetNativeView() const { |
| 77 return gfx::NativeView(); |
| 78 } |
| 79 |
| 80 gfx::NativeView TestTabContentsView::GetContentNativeView() const { |
| 81 return gfx::NativeView(); |
| 82 } |
| 83 |
| 84 gfx::NativeWindow TestTabContentsView::GetTopLevelNativeWindow() const { |
| 85 return gfx::NativeWindow(); |
| 86 } |
| 87 |
| 88 void TestTabContentsView::GetContainerBounds(gfx::Rect *out) const { |
| 89 } |
| 90 |
| 91 void TestTabContentsView::SetPageTitle(const std::wstring& title) { |
| 92 } |
| 93 |
| 94 void TestTabContentsView::OnTabCrashed(base::TerminationStatus status, |
| 95 int error_code) { |
| 96 } |
| 97 |
| 98 void TestTabContentsView::SizeContents(const gfx::Size& size) { |
| 99 } |
| 100 |
| 101 void TestTabContentsView::RenderViewCreated(RenderViewHost* host) { |
| 102 } |
| 103 |
| 104 void TestTabContentsView::Focus() { |
| 105 } |
| 106 |
| 107 void TestTabContentsView::SetInitialFocus() { |
| 108 } |
| 109 |
| 110 void TestTabContentsView::StoreFocus() { |
| 111 } |
| 112 |
| 113 void TestTabContentsView::RestoreFocus() { |
| 114 } |
| 115 |
| 116 bool TestTabContentsView::IsDoingDrag() const { |
| 117 return false; |
| 118 } |
| 119 |
| 120 void TestTabContentsView::CancelDragAndCloseTab() { |
| 121 } |
| 122 |
| 123 bool TestTabContentsView::IsEventTracking() const { |
| 124 return false; |
| 125 } |
| 126 |
| 127 void TestTabContentsView::CloseTabAfterEventTracking() { |
| 128 } |
| 129 |
| 130 void TestTabContentsView::GetViewBounds(gfx::Rect* out) const { |
| 131 } |
OLD | NEW |