| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index 3d8f3c58817471e6b3de4e7720c35a2efc163ddc..5f31db8d62f90022bab3f17cfe325ce09b80dfa1 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -26,9 +26,6 @@
|
| #include "gfx/point.h"
|
| #include "chrome/app/chrome_command_ids.h"
|
| #include "chrome/browser/autofill/autofill_manager.h"
|
| -#if defined(OS_WIN)
|
| -#include "chrome/browser/autofill/autofill_ie_toolbar_import_win.h"
|
| -#endif // defined(OS_WIN)
|
| #include "chrome/browser/bookmarks/bookmark_model.h"
|
| #include "chrome/browser/bookmarks/bookmark_utils.h"
|
| #include "chrome/browser/browser_list.h"
|
| @@ -115,6 +112,7 @@
|
|
|
| #if defined(OS_WIN)
|
| #include "app/win_util.h"
|
| +#include "chrome/browser/autofill/autofill_ie_toolbar_import_win.h"
|
| #include "chrome/browser/browser_child_process_host.h"
|
| #include "chrome/browser/cert_store.h"
|
| #include "chrome/browser/download/save_package.h"
|
| @@ -3337,6 +3335,10 @@ void Browser::OnStateChanged() {
|
| ///////////////////////////////////////////////////////////////////////////////
|
| // Browser, InstantDelegate implementation:
|
|
|
| +void Browser::PrepareForInstant() {
|
| + window_->PrepareForInstant();
|
| +}
|
| +
|
| void Browser::ShowInstant(TabContents* preview_contents) {
|
| DCHECK(instant_->tab_contents() == GetSelectedTabContents());
|
| window_->ShowInstant(preview_contents);
|
|
|