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

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

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
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/macros.h"
12 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
13 #include "base/memory/weak_ptr.h" 14 #include "base/memory/weak_ptr.h"
14 #include "components/devtools_discovery/devtools_target_descriptor.h" 15 #include "components/devtools_discovery/devtools_target_descriptor.h"
15 #include "net/http/http_status_code.h" 16 #include "net/http/http_status_code.h"
16 17
17 class GURL; 18 class GURL;
18 19
19 namespace base { 20 namespace base {
20 class DictionaryValue; 21 class DictionaryValue;
21 class Thread; 22 class Thread;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 std::map<std::string, devtools_discovery::DevToolsTargetDescriptor*>; 142 std::map<std::string, devtools_discovery::DevToolsTargetDescriptor*>;
142 DescriptorMap descriptor_map_; 143 DescriptorMap descriptor_map_;
143 base::WeakPtrFactory<DevToolsHttpHandler> weak_factory_; 144 base::WeakPtrFactory<DevToolsHttpHandler> weak_factory_;
144 145
145 DISALLOW_COPY_AND_ASSIGN(DevToolsHttpHandler); 146 DISALLOW_COPY_AND_ASSIGN(DevToolsHttpHandler);
146 }; 147 };
147 148
148 } // namespace devtools_http_handler 149 } // namespace devtools_http_handler
149 150
150 #endif // COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_H_ 151 #endif // COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_H_
OLDNEW
« no previous file with comments | « components/devtools_discovery/devtools_target_descriptor.h ('k') | components/devtools_http_handler/devtools_http_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698