| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ | |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ | |
| 7 | |
| 8 | |
| 9 namespace extensions { | |
| 10 namespace functions { | |
| 11 | |
| 12 // | |
| 13 // This is some comment. | |
| 14 // This is another comment. | |
| 15 // This is yet another comment. | |
| 16 // | |
| 17 enum HistogramValue { | |
| 18 UNKNOWN = 0, | |
| 19 WEBNAVIGATION_GETALLFRAMES, | |
| 20 BROWSINGDATA_REMOVEWEBSQL, | |
| 21 WALLPAPERPRIVATE_SETCUSTOMWALLPAPERLAYOUT, | |
| 22 DOWNLOADSINTERNAL_DETERMINEFILENAME, | |
| 23 SYNCFILESYSTEM_GETFILESYNCSTATUSES2, // Rename here!!! | |
| 24 MEDIAGALLERIESPRIVATE_GETHANDLERS, | |
| 25 WALLPAPERPRIVATE_RESETWALLPAPER, | |
| 26 // Last entry: Add new entries above and ensure to update | |
| 27 // tools/metrics/histograms/histograms/histograms.xml. | |
| 28 ENUM_BOUNDARY | |
| 29 }; | |
| 30 | |
| 31 } // namespace functions | |
| 32 } // namespace extensions | |
| 33 | |
| 34 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ | |
| OLD | NEW |