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

Side by Side Diff: extensions/browser/process_map.h

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 EXTENSIONS_BROWSER_PROCESS_MAP_H_ 5 #ifndef EXTENSIONS_BROWSER_PROCESS_MAP_H_
6 #define EXTENSIONS_BROWSER_PROCESS_MAP_H_ 6 #define EXTENSIONS_BROWSER_PROCESS_MAP_H_
7 7
8 #include <stddef.h>
9
8 #include <set> 10 #include <set>
9 #include <string> 11 #include <string>
10 12
11 #include "base/basictypes.h" 13 #include "base/macros.h"
12 #include "components/keyed_service/core/keyed_service.h" 14 #include "components/keyed_service/core/keyed_service.h"
13 #include "extensions/common/features/feature.h" 15 #include "extensions/common/features/feature.h"
14 16
15 namespace content { 17 namespace content {
16 class BrowserContext; 18 class BrowserContext;
17 } 19 }
18 20
19 namespace extensions { 21 namespace extensions {
20 class Extension; 22 class Extension;
21 23
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 133
132 typedef std::set<Item> ItemSet; 134 typedef std::set<Item> ItemSet;
133 ItemSet items_; 135 ItemSet items_;
134 136
135 DISALLOW_COPY_AND_ASSIGN(ProcessMap); 137 DISALLOW_COPY_AND_ASSIGN(ProcessMap);
136 }; 138 };
137 139
138 } // namespace extensions 140 } // namespace extensions
139 141
140 #endif // EXTENSIONS_BROWSER_PROCESS_MAP_H_ 142 #endif // EXTENSIONS_BROWSER_PROCESS_MAP_H_
OLDNEW
« no previous file with comments | « extensions/browser/process_manager_unittest.cc ('k') | extensions/browser/process_map_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698