OLD | NEW |
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 // Implementation of about_flags for iOS that sets flags based on experimental | 5 // Implementation of about_flags for iOS that sets flags based on experimental |
6 // settings. | 6 // settings. |
7 | 7 |
8 #ifndef IOS_CHROME_BROWSER_ABOUT_FLAGS_H_ | 8 #ifndef IOS_CHROME_BROWSER_ABOUT_FLAGS_H_ |
9 #define IOS_CHROME_BROWSER_ABOUT_FLAGS_H_ | 9 #define IOS_CHROME_BROWSER_ABOUT_FLAGS_H_ |
10 | 10 |
| 11 #include <stddef.h> |
| 12 |
11 #include "components/flags_ui/flags_state.h" | 13 #include "components/flags_ui/flags_state.h" |
12 | 14 |
13 namespace base { | 15 namespace base { |
14 class CommandLine; | 16 class CommandLine; |
15 class ListValue; | 17 class ListValue; |
16 } | 18 } |
17 | 19 |
18 namespace flags_ui { | 20 namespace flags_ui { |
19 class FlagsStorage; | 21 class FlagsStorage; |
20 } | 22 } |
(...skipping 21 matching lines...) Expand all Loading... |
42 void ResetAllFlags(flags_ui::FlagsStorage* flags_storage); | 44 void ResetAllFlags(flags_ui::FlagsStorage* flags_storage); |
43 | 45 |
44 namespace testing { | 46 namespace testing { |
45 | 47 |
46 // Returns the global set of feature entries. | 48 // Returns the global set of feature entries. |
47 const flags_ui::FeatureEntry* GetFeatureEntries(size_t* count); | 49 const flags_ui::FeatureEntry* GetFeatureEntries(size_t* count); |
48 | 50 |
49 } // namespace testing | 51 } // namespace testing |
50 | 52 |
51 #endif // IOS_CHROME_BROWSER_ABOUT_FLAGS_H_ | 53 #endif // IOS_CHROME_BROWSER_ABOUT_FLAGS_H_ |
OLD | NEW |