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

Side by Side Diff: components/devtools_http_handler/devtools_http_handler.h

Issue 1137243005: Add declaration for DictionaryValue in devtools_http_handler.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698