| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ | 5 #ifndef EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ |
| 6 #define EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ | 6 #define EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ |
| 7 | 7 |
| 8 namespace extensions { | 8 namespace extensions { |
| 9 namespace functions { | 9 namespace functions { |
| 10 | 10 |
| (...skipping 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1196 SYSTEM_DISPLAY_OVERSCANCALIBRATIONCOMPLETE, | 1196 SYSTEM_DISPLAY_OVERSCANCALIBRATIONCOMPLETE, |
| 1197 AUTOFILLPRIVATE_GETCOUNTRYLIST, | 1197 AUTOFILLPRIVATE_GETCOUNTRYLIST, |
| 1198 RUNTIME_RESTARTAFTERDELAY, | 1198 RUNTIME_RESTARTAFTERDELAY, |
| 1199 SYSTEM_DISPLAY_SETDISPLAYLAYOUT, | 1199 SYSTEM_DISPLAY_SETDISPLAYLAYOUT, |
| 1200 SYSTEM_DISPLAY_GETDISPLAYLAYOUT, | 1200 SYSTEM_DISPLAY_GETDISPLAYLAYOUT, |
| 1201 QUICKUNLOCKPRIVATE_SETMODES, | 1201 QUICKUNLOCKPRIVATE_SETMODES, |
| 1202 QUICKUNLOCKPRIVATE_GETACTIVEMODES, | 1202 QUICKUNLOCKPRIVATE_GETACTIVEMODES, |
| 1203 QUICKUNLOCKPRIVATE_GETAVAILABLEMODES, | 1203 QUICKUNLOCKPRIVATE_GETAVAILABLEMODES, |
| 1204 WEBSTOREPRIVATE_ISPENDINGCUSTODIANAPPROVAL, | 1204 WEBSTOREPRIVATE_ISPENDINGCUSTODIANAPPROVAL, |
| 1205 TABS_DISCARD, | 1205 TABS_DISCARD, |
| 1206 CERTIFICATEPROVIDER_REQUESTPIN, |
| 1207 CERTIFICATEPROVIDER_STOPPINREQUEST, |
| 1206 // Last entry: Add new entries above, then run: | 1208 // Last entry: Add new entries above, then run: |
| 1207 // python tools/metrics/histograms/update_extension_histograms.py | 1209 // python tools/metrics/histograms/update_extension_histograms.py |
| 1208 ENUM_BOUNDARY | 1210 ENUM_BOUNDARY |
| 1209 }; | 1211 }; |
| 1210 | 1212 |
| 1211 } // namespace functions | 1213 } // namespace functions |
| 1212 } // namespace extensions | 1214 } // namespace extensions |
| 1213 | 1215 |
| 1214 #endif // EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ | 1216 #endif // EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ |
| OLD | NEW |