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 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1070 FILEMANAGERPRIVATE_ADDPROVIDEDFILESYSTEM, | 1070 FILEMANAGERPRIVATE_ADDPROVIDEDFILESYSTEM, |
1071 FILEMANAGERPRIVATE_CONFIGUREPROVIDEDFILESYSTEM, | 1071 FILEMANAGERPRIVATE_CONFIGUREPROVIDEDFILESYSTEM, |
1072 SEARCHENGINESPRIVATE_GETDEFAULTSEARCHENGINES, | 1072 SEARCHENGINESPRIVATE_GETDEFAULTSEARCHENGINES, |
1073 SEARCHENGINESPRIVATE_SETSELECTEDSEARCHENGINE, | 1073 SEARCHENGINESPRIVATE_SETSELECTEDSEARCHENGINE, |
1074 AUTOFILLPRIVATE_SAVEADDRESS, | 1074 AUTOFILLPRIVATE_SAVEADDRESS, |
1075 AUTOFILLPRIVATE_GETADDRESSCOMPONENTS, | 1075 AUTOFILLPRIVATE_GETADDRESSCOMPONENTS, |
1076 AUTOFILLPRIVATE_SAVECREDITCARD, | 1076 AUTOFILLPRIVATE_SAVECREDITCARD, |
1077 AUTOFILLPRIVATE_REMOVEENTRY, | 1077 AUTOFILLPRIVATE_REMOVEENTRY, |
1078 AUTOFILLPRIVATE_VALIDATEPHONENUMBERS, | 1078 AUTOFILLPRIVATE_VALIDATEPHONENUMBERS, |
1079 AUTOFILLPRIVATE_MASKCREDITCARD, | 1079 AUTOFILLPRIVATE_MASKCREDITCARD, |
| 1080 INSTANCEID_GETID, |
| 1081 INSTANCEID_GETCREATIONTIME, |
| 1082 INSTANCEID_GETTOKEN, |
| 1083 INSTANCEID_DELETETOKEN, |
| 1084 INSTANCEID_DELETEID, |
1080 // Last entry: Add new entries above and ensure to update | 1085 // Last entry: Add new entries above and ensure to update |
1081 // tools/metrics/histograms/histograms.xml. | 1086 // tools/metrics/histograms/histograms.xml. |
1082 ENUM_BOUNDARY | 1087 ENUM_BOUNDARY |
1083 }; | 1088 }; |
1084 | 1089 |
1085 } // namespace functions | 1090 } // namespace functions |
1086 } // namespace extensions | 1091 } // namespace extensions |
1087 | 1092 |
1088 #endif // EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ | 1093 #endif // EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ |
OLD | NEW |