| Index: chrome/browser/ui/gtk/web_dialog_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/web_dialog_gtk.cc b/chrome/browser/ui/gtk/web_dialog_gtk.cc
|
| index 91a2732c3cf861094ca7bc404cd59bdf4618a4e9..f5a0bb9250ac78d7f538448917a09ccb57433138 100644
|
| --- a/chrome/browser/ui/gtk/web_dialog_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/web_dialog_gtk.cc
|
| @@ -14,7 +14,7 @@
|
| #include "chrome/browser/ui/browser_window.h"
|
| #include "chrome/browser/ui/gtk/gtk_util.h"
|
| #include "chrome/browser/ui/gtk/tab_contents_container_gtk.h"
|
| -#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
|
| +#include "chrome/browser/ui/tab_contents/tab_contents.h"
|
| #include "chrome/browser/ui/webui/web_dialog_controller.h"
|
| #include "content/public/browser/native_web_keyboard_event.h"
|
| #include "content/public/browser/web_contents.h"
|
| @@ -210,7 +210,7 @@ void WebDialogGtk::HandleKeyboardEvent(const NativeWebKeyboardEvent& event) {
|
| // WebDialogGtk:
|
|
|
| gfx::NativeWindow WebDialogGtk::InitDialog() {
|
| - tab_.reset(new TabContentsWrapper(
|
| + tab_.reset(new TabContents(
|
| WebContents::Create(profile(), NULL, MSG_ROUTING_NONE, NULL, NULL)));
|
| tab_->web_contents()->SetDelegate(this);
|
|
|
|
|