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 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
787 BLUETOOTHLOWENERGY_GETCHARACTERISTICS, | 787 BLUETOOTHLOWENERGY_GETCHARACTERISTICS, |
788 BLUETOOTHLOWENERGY_GETINCLUDEDSERVICES, | 788 BLUETOOTHLOWENERGY_GETINCLUDEDSERVICES, |
789 BLUETOOTHLOWENERGY_GETDESCRIPTOR, | 789 BLUETOOTHLOWENERGY_GETDESCRIPTOR, |
790 BLUETOOTHLOWENERGY_GETDESCRIPTORS, | 790 BLUETOOTHLOWENERGY_GETDESCRIPTORS, |
791 BLUETOOTHLOWENERGY_READCHARACTERISTICVALUE, | 791 BLUETOOTHLOWENERGY_READCHARACTERISTICVALUE, |
792 BLUETOOTHLOWENERGY_WRITECHARACTERISTICVALUE, | 792 BLUETOOTHLOWENERGY_WRITECHARACTERISTICVALUE, |
793 BLUETOOTHLOWENERGY_READDESCRIPTORVALUE, | 793 BLUETOOTHLOWENERGY_READDESCRIPTORVALUE, |
794 BLUETOOTHLOWENERGY_WRITEDESCRIPTORVALUE, | 794 BLUETOOTHLOWENERGY_WRITEDESCRIPTORVALUE, |
795 BOOKMARKMANAGERPRIVATE_CREATEWITHMETAINFO, | 795 BOOKMARKMANAGERPRIVATE_CREATEWITHMETAINFO, |
796 BOOKMARKMANAGERPRIVATE_UPDATEMETAINFO, | 796 BOOKMARKMANAGERPRIVATE_UPDATEMETAINFO, |
| 797 BLUETOOTHSOCKET_CREATE, |
| 798 BLUETOOTHSOCKET_UPDATE, |
| 799 BLUETOOTHSOCKET_SETPAUSED, |
| 800 BLUETOOTHSOCKET_LISTENUSINGRFCOMM, |
| 801 BLUETOOTHSOCKET_LISTENUSINGINSECURERFCOMM, |
| 802 BLUETOOTHSOCKET_LISTENUSINGL2CAP, |
| 803 BLUETOOTHSOCKET_CONNECT, |
| 804 BLUETOOTHSOCKET_DISCONNECT, |
| 805 BLUETOOTHSOCKET_CLOSE, |
| 806 BLUETOOTHSOCKET_SEND, |
| 807 BLUETOOTHSOCKET_GETINFO, |
| 808 BLUETOOTHSOCKET_GETSOCKETS, |
797 // Last entry: Add new entries above and ensure to update | 809 // Last entry: Add new entries above and ensure to update |
798 // tools/metrics/histograms/histograms/histograms.xml. | 810 // tools/metrics/histograms/histograms/histograms.xml. |
799 ENUM_BOUNDARY | 811 ENUM_BOUNDARY |
800 }; | 812 }; |
801 | 813 |
802 } // namespace functions | 814 } // namespace functions |
803 } // namespace extensions | 815 } // namespace extensions |
804 | 816 |
805 #endif // EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ | 817 #endif // EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ |
OLD | NEW |