| Index: chrome/browser/chromeos/offline/offline_load_page.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/offline/offline_load_page.cc (revision 121009)
|
| +++ chrome/browser/chromeos/offline/offline_load_page.cc (working copy)
|
| @@ -57,7 +57,6 @@
|
| url_(url) {
|
| net::NetworkChangeNotifier::AddOnlineStateObserver(this);
|
| interstitial_page_ = InterstitialPage::Create(web_contents, true, url, this);
|
| - interstitial_page_->Show();
|
| }
|
|
|
| OfflineLoadPage::~OfflineLoadPage() {
|
| @@ -65,6 +64,10 @@
|
| net::NetworkChangeNotifier::RemoveOnlineStateObserver(this);
|
| }
|
|
|
| +void OfflineLoadPage::Show() {
|
| + interstitial_page_->Show();
|
| +}
|
| +
|
| std::string OfflineLoadPage::GetHTMLContents() {
|
| DictionaryValue strings;
|
| int64 time_to_wait = 0; // kMaxBlankPeriod
|
|
|