| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |