OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
13 #include "components/prefs/pref_change_registrar.h" | 14 #include "components/prefs/pref_change_registrar.h" |
14 #include "content/public/browser/notification_observer.h" | 15 #include "content/public/browser/notification_observer.h" |
15 #include "content/public/browser/notification_registrar.h" | 16 #include "content/public/browser/notification_registrar.h" |
16 #include "content/public/browser/web_ui_controller.h" | 17 #include "content/public/browser/web_ui_controller.h" |
17 #include "content/public/browser/web_ui_data_source.h" | 18 #include "content/public/browser/web_ui_data_source.h" |
18 | 19 |
19 namespace base { | 20 namespace base { |
20 class Value; | 21 class Value; |
21 class ListValue; | 22 class ListValue; |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 | 93 |
93 typedef std::map<std::string, DevToolsTargetsUIHandler*> TargetHandlerMap; | 94 typedef std::map<std::string, DevToolsTargetsUIHandler*> TargetHandlerMap; |
94 TargetHandlerMap target_handlers_; | 95 TargetHandlerMap target_handlers_; |
95 | 96 |
96 scoped_ptr<PortForwardingStatusSerializer> port_status_serializer_; | 97 scoped_ptr<PortForwardingStatusSerializer> port_status_serializer_; |
97 | 98 |
98 DISALLOW_COPY_AND_ASSIGN(InspectUI); | 99 DISALLOW_COPY_AND_ASSIGN(InspectUI); |
99 }; | 100 }; |
100 | 101 |
101 #endif // CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_ | 102 #endif // CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_ |
OLD | NEW |