| Index: webkit/tools/test_shell/webview_host_gtk.cc
|
| ===================================================================
|
| --- webkit/tools/test_shell/webview_host_gtk.cc (revision 29380)
|
| +++ webkit/tools/test_shell/webview_host_gtk.cc (working copy)
|
| @@ -10,11 +10,13 @@
|
| #include "base/gfx/rect.h"
|
| #include "base/gfx/size.h"
|
| #include "skia/ext/platform_canvas.h"
|
| +#include "webkit/api/public/WebView.h"
|
| #include "webkit/glue/plugins/gtk_plugin_container.h"
|
| #include "webkit/glue/webpreferences.h"
|
| -#include "webkit/glue/webview.h"
|
| #include "webkit/tools/test_shell/test_webview_delegate.h"
|
|
|
| +using WebKit::WebView;
|
| +
|
| // static
|
| WebViewHost* WebViewHost::Create(GtkWidget* parent_view,
|
| TestWebViewDelegate* delegate,
|
| @@ -24,7 +26,7 @@
|
| host->view_ = WebWidgetHost::CreateWidget(parent_view, host);
|
| host->plugin_container_manager_.set_host_widget(host->view_);
|
|
|
| - host->webwidget_ = WebView::Create(delegate);
|
| + host->webwidget_ = WebView::create(delegate);
|
| prefs.Apply(host->webview());
|
| host->webview()->initializeMainFrame(delegate);
|
| host->webwidget_->layout();
|
|
|