| OLD | NEW |
| 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 CHROME_BROWSER_ABOUT_FLAGS_H_ | 5 #ifndef CHROME_BROWSER_ABOUT_FLAGS_H_ |
| 6 #define CHROME_BROWSER_ABOUT_FLAGS_H_ | 6 #define CHROME_BROWSER_ABOUT_FLAGS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 8 #include <stdint.h> | 9 #include <stdint.h> |
| 9 | 10 |
| 10 #include <map> | 11 #include <map> |
| 11 #include <set> | 12 #include <set> |
| 12 #include <string> | 13 #include <string> |
| 13 | 14 |
| 14 #include "base/command_line.h" | 15 #include "base/command_line.h" |
| 15 #include "base/metrics/histogram_base.h" | 16 #include "base/metrics/histogram_base.h" |
| 16 #include "base/strings/string16.h" | 17 #include "base/strings/string16.h" |
| 17 #include "components/flags_ui/feature_entry.h" | 18 #include "components/flags_ui/feature_entry.h" |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 89 |
| 89 // This value is reported as switch histogram ID if switch name has unknown | 90 // This value is reported as switch histogram ID if switch name has unknown |
| 90 // format. | 91 // format. |
| 91 extern const base::HistogramBase::Sample kBadSwitchFormatHistogramId; | 92 extern const base::HistogramBase::Sample kBadSwitchFormatHistogramId; |
| 92 | 93 |
| 93 } // namespace testing | 94 } // namespace testing |
| 94 | 95 |
| 95 } // namespace about_flags | 96 } // namespace about_flags |
| 96 | 97 |
| 97 #endif // CHROME_BROWSER_ABOUT_FLAGS_H_ | 98 #endif // CHROME_BROWSER_ABOUT_FLAGS_H_ |
| OLD | NEW |