[Cronet] Delay StartNetLog and StopNetLog until native request context is initialized
[chromium-blink-merge.git] / chrome / browser / devtools / device / port_forwarding_controller.h
blob19736fcdd10161f33795280a56372cbeeaecefcd
1 // Copyright 2014 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.
5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVICE_PORT_FORWARDING_CONTROLLER_H_
6 #define CHROME_BROWSER_DEVTOOLS_DEVICE_PORT_FORWARDING_CONTROLLER_H_
8 #include <map>
10 #include "base/prefs/pref_change_registrar.h"
11 #include "chrome/browser/devtools/device/devtools_android_bridge.h"
12 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
13 #include "components/keyed_service/core/keyed_service.h"
15 class PrefService;
16 class Profile;
18 class PortForwardingController {
19 public:
20 typedef DevToolsAndroidBridge::PortStatus PortStatus;
21 typedef DevToolsAndroidBridge::PortStatusMap PortStatusMap;
22 typedef DevToolsAndroidBridge::BrowserStatus BrowserStatus;
23 typedef DevToolsAndroidBridge::ForwardingStatus ForwardingStatus;
25 explicit PortForwardingController(Profile* profile,
26 DevToolsAndroidBridge* bridge);
28 virtual ~PortForwardingController();
30 ForwardingStatus DeviceListChanged(
31 const DevToolsAndroidBridge::RemoteDevices& devices);
33 private:
34 class Connection;
35 typedef std::map<std::string, Connection*> Registry;
37 void OnPrefsChange();
39 void UpdateConnections();
41 Profile* profile_;
42 DevToolsAndroidBridge* bridge_;
43 PrefService* pref_service_;
44 PrefChangeRegistrar pref_change_registrar_;
45 Registry registry_;
47 typedef std::map<int, std::string> ForwardingMap;
48 ForwardingMap forwarding_map_;
50 DISALLOW_COPY_AND_ASSIGN(PortForwardingController);
53 #endif // CHROME_BROWSER_DEVTOOLS_DEVICE_PORT_FORWARDING_CONTROLLER_H_