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

Unified Diff: content/browser/net/browser_online_state_observer.h

Issue 7259004: Convert ViewMsg_NetworkStateChanged from routed -> control, allowing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix linux build Created 9 years, 6 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/ui/shell_dialogs.cc ('k') | content/browser/net/browser_online_state_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/net/browser_online_state_observer.h
diff --git a/content/browser/net/browser_online_state_observer.h b/content/browser/net/browser_online_state_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..1e5e71a2f2edb619f64e67101439c9f1d9391cbc
--- /dev/null
+++ b/content/browser/net/browser_online_state_observer.h
@@ -0,0 +1,27 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_BROWSER_NET_BROWSER_ONLINE_STATE_OBSERVER_H_
+#define CONTENT_BROWSER_NET_BROWSER_ONLINE_STATE_OBSERVER_H_
+#pragma once
+
+#include "base/basictypes.h"
+#include "net/base/network_change_notifier.h"
+
+// Listens for changes to the online state and manages sending
+// updates to each RenderProcess via RenderProcessHost IPC.
+class BrowserOnlineStateObserver
+ : public net::NetworkChangeNotifier::OnlineStateObserver {
+ public:
+ BrowserOnlineStateObserver();
+ virtual ~BrowserOnlineStateObserver();
+
+ // OnlineStateObserver implementation.
+ virtual void OnOnlineStateChanged(bool online);
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(BrowserOnlineStateObserver);
+};
+
+#endif // CONTENT_BROWSER_NET_BROWSER_ONLINE_STATE_OBSERVER_H_
« no previous file with comments | « chrome/browser/ui/shell_dialogs.cc ('k') | content/browser/net/browser_online_state_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698