OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_OFFLINE_OFFLINE_LOAD_PAGE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_OFFLINE_OFFLINE_LOAD_PAGE_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "chrome/browser/chromeos/network_state_notifier.h" |
| 11 #include "chrome/browser/tab_contents/interstitial_page.h" |
| 12 #include "chrome/common/notification_observer.h" |
| 13 #include "chrome/common/notification_service.h" |
| 14 |
| 15 class TabContents; |
| 16 |
| 17 namespace chromeos { |
| 18 |
| 19 // OfflineLoadPage class shows the interstitial page that is shown |
| 20 // when no network is available and hides when some network (either |
| 21 // one of wifi, 3g or ethernet) becomes available. |
| 22 // It deletes itself when the interstitial page is closed. |
| 23 class OfflineLoadPage : public InterstitialPage { |
| 24 public: |
| 25 // A delegate class that is called when the interstitinal page |
| 26 // is closed. |
| 27 class Delegate { |
| 28 public: |
| 29 Delegate() {} |
| 30 virtual ~Delegate() {} |
| 31 // Called when a user selected to proceed or not to proceed |
| 32 // with loading. |
| 33 virtual void OnBlockingPageComplete(bool proceed) = 0; |
| 34 |
| 35 private: |
| 36 DISALLOW_COPY_AND_ASSIGN(Delegate); |
| 37 }; |
| 38 static void Show(int process_host_id, int render_view_id, |
| 39 const GURL& url, Delegate* delegate); |
| 40 // Import show here so that overloading works. |
| 41 using InterstitialPage::Show; |
| 42 |
| 43 protected: |
| 44 // Create a offline load page for the |tab_contents|. |
| 45 OfflineLoadPage(TabContents* tab_contents, const GURL& url, |
| 46 Delegate* delegate); |
| 47 virtual ~OfflineLoadPage() {} |
| 48 |
| 49 private: |
| 50 // InterstitialPage implementation. |
| 51 virtual std::string GetHTMLContents(); |
| 52 virtual void CommandReceived(const std::string& command); |
| 53 virtual void Proceed(); |
| 54 virtual void DontProceed(); |
| 55 |
| 56 // Overrides InterstitialPage's Observe. |
| 57 virtual void Observe(NotificationType type, |
| 58 const NotificationSource& source, |
| 59 const NotificationDetails& details); |
| 60 |
| 61 Delegate* delegate_; |
| 62 NotificationRegistrar registrar_; |
| 63 |
| 64 DISALLOW_COPY_AND_ASSIGN(OfflineLoadPage); |
| 65 }; |
| 66 |
| 67 } // namespace chromeos |
| 68 |
| 69 #endif // CHROME_BROWSER_CHROMEOS_OFFLINE_OFFLINE_LOAD_PAGE_H_ |
OLD | NEW |