Chromium Code Reviews| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 91 void TestWebContentsView::SetPageTitle(const string16& title) { | 91 void TestWebContentsView::SetPageTitle(const string16& title) { |
| 92 } | 92 } |
| 93 | 93 |
| 94 void TestWebContentsView::OnTabCrashed(base::TerminationStatus status, | 94 void TestWebContentsView::OnTabCrashed(base::TerminationStatus status, |
| 95 int error_code) { | 95 int error_code) { |
| 96 } | 96 } |
| 97 | 97 |
| 98 void TestWebContentsView::SizeContents(const gfx::Size& size) { | 98 void TestWebContentsView::SizeContents(const gfx::Size& size) { |
| 99 } | 99 } |
| 100 | 100 |
| 101 void TestWebContentsView::RenderViewCreated(RenderViewHost* host) { | 101 void TestWebContentsView::RenderViewCreated(content::RenderViewHost* host) { |
|
jam
2012/03/05 23:59:28
ditto
Jói
2012/03/06 16:38:55
Done.
| |
| 102 } | 102 } |
| 103 | 103 |
| 104 void TestWebContentsView::Focus() { | 104 void TestWebContentsView::Focus() { |
| 105 } | 105 } |
| 106 | 106 |
| 107 void TestWebContentsView::SetInitialFocus() { | 107 void TestWebContentsView::SetInitialFocus() { |
| 108 } | 108 } |
| 109 | 109 |
| 110 void TestWebContentsView::StoreFocus() { | 110 void TestWebContentsView::StoreFocus() { |
| 111 } | 111 } |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 130 void TestWebContentsView::GetViewBounds(gfx::Rect* out) const { | 130 void TestWebContentsView::GetViewBounds(gfx::Rect* out) const { |
| 131 } | 131 } |
| 132 | 132 |
| 133 void TestWebContentsView::InstallOverlayView(gfx::NativeView view) { | 133 void TestWebContentsView::InstallOverlayView(gfx::NativeView view) { |
| 134 } | 134 } |
| 135 | 135 |
| 136 void TestWebContentsView::RemoveOverlayView() { | 136 void TestWebContentsView::RemoveOverlayView() { |
| 137 } | 137 } |
| 138 | 138 |
| 139 } // namespace content | 139 } // namespace content |
| OLD | NEW |