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

Side by Side Diff: chrome/browser/chromeos/extensions/networking_private_event_router.h

Issue 12225087: This adds the onNetworkChanged event to networkingPrivate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: disabling test temporarily Created 7 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/networking_private_event_router.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 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_EXTENSIONS_NETWORKING_PRIVATE_EVENT_ROUTER_H_
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_NETWORKING_PRIVATE_EVENT_ROUTER_H_
7
8 #include "chrome/browser/extensions/event_router.h"
9 #include "chrome/browser/profiles/profile_keyed_service.h"
10 #include "chromeos/network/network_state_handler_observer.h"
11
12 class Profile;
13
14 namespace chromeos {
15
16 // This is a factory class used by the ProfileDependencyManager to instantiate
17 // the event router that will forward events from the NetworkStateHandler to the
18 // JavaScript Networking API.
19 class NetworkingPrivateEventRouter : public ProfileKeyedService,
20 public extensions::EventRouter::Observer,
21 public NetworkStateHandlerObserver {
22 public:
23 explicit NetworkingPrivateEventRouter(Profile* profile);
24 virtual ~NetworkingPrivateEventRouter();
25
26 protected:
27 // ProfileKeyedService overrides:
28 virtual void Shutdown() OVERRIDE;
29
30 // EventRouter::Observer overrides:
31 virtual void OnListenerAdded(
32 const extensions::EventListenerInfo& details) OVERRIDE;
33 virtual void OnListenerRemoved(
34 const extensions::EventListenerInfo& details) OVERRIDE;
35
36 // NetworkStateHandlerObserver overrides:
37 virtual void NetworkListChanged() OVERRIDE;
38
39 private:
40 // Decide if we should listen for network changes or not. If there are any
41 // JavaScript listeners registered for the onNetworkChanged event, then we
42 // want to register for change notification from the network state handler.
43 // Otherwise, we want to unregister and not be listening to network changes.
44 void StartOrStopListeningForNetworkChanges();
45
46 Profile* profile_;
47 bool listening_;
48
49 DISALLOW_COPY_AND_ASSIGN(NetworkingPrivateEventRouter);
50 };
51
52 } // namespace chromeos
53
54 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_NETWORKING_PRIVATE_EVENT_ROUTER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/networking_private_event_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698