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 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
872 WEBVIEWINTERNAL_NAVIGATE, | 872 WEBVIEWINTERNAL_NAVIGATE, |
873 WEBVIEWINTERNAL_OVERRIDEUSERAGENT, | 873 WEBVIEWINTERNAL_OVERRIDEUSERAGENT, |
874 WEBVIEWINTERNAL_RELOAD, | 874 WEBVIEWINTERNAL_RELOAD, |
875 WEBVIEWINTERNAL_SETNAME, | 875 WEBVIEWINTERNAL_SETNAME, |
876 WEBVIEWINTERNAL_SETPERMISSION, | 876 WEBVIEWINTERNAL_SETPERMISSION, |
877 WEBVIEWINTERNAL_SETZOOM, | 877 WEBVIEWINTERNAL_SETZOOM, |
878 WEBVIEWINTERNAL_SHOWCONTEXTMENU, | 878 WEBVIEWINTERNAL_SHOWCONTEXTMENU, |
879 WEBVIEWINTERNAL_STOP, | 879 WEBVIEWINTERNAL_STOP, |
880 WEBVIEWINTERNAL_STOPFINDING, | 880 WEBVIEWINTERNAL_STOPFINDING, |
881 WEBVIEWINTERNAL_TERMINATE, | 881 WEBVIEWINTERNAL_TERMINATE, |
| 882 LOGPRIVATE_STARTEVENTRECODER, |
| 883 LOGPRIVATE_STOPEVENTRECODER, |
| 884 LOGPRIVATE_DUMPLOGS, |
882 // Last entry: Add new entries above and ensure to update | 885 // Last entry: Add new entries above and ensure to update |
883 // tools/metrics/histograms/histograms/histograms.xml. | 886 // tools/metrics/histograms/histograms/histograms.xml. |
884 ENUM_BOUNDARY | 887 ENUM_BOUNDARY |
885 }; | 888 }; |
886 | 889 |
887 } // namespace functions | 890 } // namespace functions |
888 } // namespace extensions | 891 } // namespace extensions |
889 | 892 |
890 #endif // EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ | 893 #endif // EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ |
OLD | NEW |