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 COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_H_ | 5 #ifndef COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_H_ |
6 #define COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_H_ | 6 #define COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "components/devtools_discovery/devtools_target_descriptor.h" | 14 #include "components/devtools_discovery/devtools_target_descriptor.h" |
15 #include "net/http/http_status_code.h" | 15 #include "net/http/http_status_code.h" |
16 | 16 |
17 class GURL; | 17 class GURL; |
18 | 18 |
19 namespace base { | 19 namespace base { |
| 20 class DictionaryValue; |
20 class Thread; | 21 class Thread; |
21 class Value; | 22 class Value; |
22 } | 23 } |
23 | 24 |
24 namespace net { | 25 namespace net { |
25 class IPEndPoint; | 26 class IPEndPoint; |
26 class HttpServerRequestInfo; | 27 class HttpServerRequestInfo; |
27 class ServerSocket; | 28 class ServerSocket; |
28 } | 29 } |
29 | 30 |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 std::map<std::string, devtools_discovery::DevToolsTargetDescriptor*>; | 141 std::map<std::string, devtools_discovery::DevToolsTargetDescriptor*>; |
141 DescriptorMap descriptor_map_; | 142 DescriptorMap descriptor_map_; |
142 base::WeakPtrFactory<DevToolsHttpHandler> weak_factory_; | 143 base::WeakPtrFactory<DevToolsHttpHandler> weak_factory_; |
143 | 144 |
144 DISALLOW_COPY_AND_ASSIGN(DevToolsHttpHandler); | 145 DISALLOW_COPY_AND_ASSIGN(DevToolsHttpHandler); |
145 }; | 146 }; |
146 | 147 |
147 } // namespace devtools_http_handler | 148 } // namespace devtools_http_handler |
148 | 149 |
149 #endif // COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_H_ | 150 #endif // COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_H_ |
OLD | NEW |