OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "chrome/browser/tab_contents/web_contents_view_gtk.h" | 5 #include "chrome/browser/tab_contents/web_contents_view_gtk.h" |
6 | 6 |
7 #include <gtk/gtk.h> | 7 #include <gtk/gtk.h> |
8 | 8 |
9 #include "base/gfx/point.h" | 9 #include "base/gfx/point.h" |
10 #include "base/gfx/rect.h" | 10 #include "base/gfx/rect.h" |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 } | 82 } |
83 | 83 |
84 void WebContentsViewGtk::Invalidate() { | 84 void WebContentsViewGtk::Invalidate() { |
85 NOTIMPLEMENTED(); | 85 NOTIMPLEMENTED(); |
86 } | 86 } |
87 | 87 |
88 void WebContentsViewGtk::SizeContents(const gfx::Size& size) { | 88 void WebContentsViewGtk::SizeContents(const gfx::Size& size) { |
89 NOTIMPLEMENTED(); | 89 NOTIMPLEMENTED(); |
90 } | 90 } |
91 | 91 |
| 92 void WebContentsViewGtk::OpenDeveloperTools() { |
| 93 NOTIMPLEMENTED(); |
| 94 } |
| 95 |
| 96 void WebContentsViewGtk::ForwardMessageToDevToolsClient( |
| 97 const IPC::Message& message) { |
| 98 NOTIMPLEMENTED(); |
| 99 } |
| 100 |
92 void WebContentsViewGtk::FindInPage(const Browser& browser, | 101 void WebContentsViewGtk::FindInPage(const Browser& browser, |
93 bool find_next, bool forward_direction) { | 102 bool find_next, bool forward_direction) { |
94 NOTIMPLEMENTED(); | 103 NOTIMPLEMENTED(); |
95 } | 104 } |
96 | 105 |
97 void WebContentsViewGtk::HideFindBar(bool end_session) { | 106 void WebContentsViewGtk::HideFindBar(bool end_session) { |
98 NOTIMPLEMENTED(); | 107 NOTIMPLEMENTED(); |
99 } | 108 } |
100 | 109 |
101 void WebContentsViewGtk::ReparentFindWindow(Browser* new_browser) const { | 110 void WebContentsViewGtk::ReparentFindWindow(Browser* new_browser) const { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 bool user_gesture) { | 170 bool user_gesture) { |
162 NOTIMPLEMENTED(); | 171 NOTIMPLEMENTED(); |
163 } | 172 } |
164 | 173 |
165 void WebContentsViewGtk::ShowCreatedWidgetInternal( | 174 void WebContentsViewGtk::ShowCreatedWidgetInternal( |
166 RenderWidgetHostView* widget_host_view, | 175 RenderWidgetHostView* widget_host_view, |
167 const gfx::Rect& initial_pos) { | 176 const gfx::Rect& initial_pos) { |
168 NOTIMPLEMENTED(); | 177 NOTIMPLEMENTED(); |
169 } | 178 } |
170 | 179 |
OLD | NEW |