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

Side by Side Diff: components/flags_ui/flags_state.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
« no previous file with comments | « components/flags_ui/feature_entry_macros.h ('k') | components/flags_ui/flags_state.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_FLAGS_UI_FLAGS_STATE_H_ 5 #ifndef COMPONENTS_FLAGS_UI_FLAGS_STATE_H_
6 #define COMPONENTS_FLAGS_UI_FLAGS_STATE_H_ 6 #define COMPONENTS_FLAGS_UI_FLAGS_STATE_H_
7 7
8 #include <stddef.h>
9
8 #include <map> 10 #include <map>
9 #include <set> 11 #include <set>
10 #include <string> 12 #include <string>
11 13
12 #include "base/callback_forward.h" 14 #include "base/callback_forward.h"
13 #include "base/command_line.h" 15 #include "base/command_line.h"
14 #include "base/macros.h" 16 #include "base/macros.h"
15 17
16 namespace base { 18 namespace base {
17 class ListValue; 19 class ListValue;
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 // Map from switch name to a set of string, that keeps track which strings 158 // Map from switch name to a set of string, that keeps track which strings
157 // were appended to existing (list value) switches. 159 // were appended to existing (list value) switches.
158 std::map<std::string, std::set<std::string>> appended_switches_; 160 std::map<std::string, std::set<std::string>> appended_switches_;
159 161
160 DISALLOW_COPY_AND_ASSIGN(FlagsState); 162 DISALLOW_COPY_AND_ASSIGN(FlagsState);
161 }; 163 };
162 164
163 } // namespace flags_ui 165 } // namespace flags_ui
164 166
165 #endif // COMPONENTS_FLAGS_UI_FLAGS_STATE_H_ 167 #endif // COMPONENTS_FLAGS_UI_FLAGS_STATE_H_
OLDNEW
« no previous file with comments | « components/flags_ui/feature_entry_macros.h ('k') | components/flags_ui/flags_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698