Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Unified Diff: chrome/browser/chromeos/network_state_notifier.h

Issue 2931005: Show offline interstitial page when offline and reload when reconnected to network. (Closed)
Patch Set: " Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/chromeos/network_state_notifier.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/network_state_notifier.h
diff --git a/chrome/browser/chromeos/network_state_notifier.h b/chrome/browser/chromeos/network_state_notifier.h
index a48d60e49213b8a85b3a86e0553ff407da7072cd..a64f26409a02f7419a6888572e72e5edea5b025c 100644
--- a/chrome/browser/chromeos/network_state_notifier.h
+++ b/chrome/browser/chromeos/network_state_notifier.h
@@ -9,6 +9,7 @@
#include "base/singleton.h"
#include "base/task.h"
+#include "base/time.h"
namespace chromeos {
@@ -48,15 +49,19 @@ class NetworkStateNotifier : public NetworkLibrary::Observer {
// Returns the singleton instance of the network state notifier;
static NetworkStateNotifier* Get();
- // NetworkLibrary::Observer implementation.
- virtual void NetworkChanged(NetworkLibrary* cros);
- virtual void NetworkTraffic(NetworkLibrary* cros, int traffic_type) {}
+ // The duration of being in offline. The value is undefined when
+ // when network is connected.
+ static base::TimeDelta GetOfflineDuration();
// Returns true if the network is connected.
static bool is_connected() {
return Get()->state_ == NetworkStateDetails::CONNECTED;
}
+ // NetworkLibrary::Observer implementation.
+ virtual void NetworkChanged(NetworkLibrary* cros);
+ virtual void NetworkTraffic(NetworkLibrary* cros, int traffic_type) {}
+
private:
friend struct DefaultSingletonTraits<NetworkStateNotifier>;
@@ -70,14 +75,18 @@ class NetworkStateNotifier : public NetworkLibrary::Observer {
// This should be invoked in UI thread.
void UpdateNetworkState(NetworkStateDetails::State new_state);
+ // A factory to post a task in UI thread.
+ ScopedRunnableMethodFactory<NetworkStateNotifier> task_factory_;
+
// The current network state.
NetworkStateDetails::State state_;
- ScopedRunnableMethodFactory<NetworkStateNotifier> task_factory_;
+ // The start time of offline.
+ base::Time offline_start_time_;
DISALLOW_COPY_AND_ASSIGN(NetworkStateNotifier);
};
-} // chromeos
+} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_NETWORK_STATE_NOTIFIER_H_
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/chromeos/network_state_notifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698