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 CHROME_BROWSER_EXTENSIONS_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ | 5 #ifndef EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_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 |
11 // Short version: | 11 // Short version: |
12 // *Never* reorder or delete entries in the |HistogramValue| enumeration. | 12 // *Never* reorder or delete entries in the |HistogramValue| enumeration. |
13 // When creating a new extension function, add a new entry at the end of the | 13 // When creating a new extension function, add a new entry at the end of the |
14 // enum, just prior to ENUM_BOUNDARY. | 14 // enum, just prior to ENUM_BOUNDARY. |
15 // | 15 // |
16 // Long version: | 16 // Long version: |
(...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
770 BLUETOOTHPRIVATE_SETPAIRINGRESPONSE, | 770 BLUETOOTHPRIVATE_SETPAIRINGRESPONSE, |
771 NETWORKINGPRIVATE_GETCAPTIVEPORTALSTATUS, | 771 NETWORKINGPRIVATE_GETCAPTIVEPORTALSTATUS, |
772 AUTOMATIONINTERNAL_PERFORMACTION, | 772 AUTOMATIONINTERNAL_PERFORMACTION, |
773 BLUETOOTH_UPDATE_SOCKET, | 773 BLUETOOTH_UPDATE_SOCKET, |
774 BLUETOOTH_SET_SOCKET_PAUSED, | 774 BLUETOOTH_SET_SOCKET_PAUSED, |
775 BLUETOOTH_GET_SOCKET, | 775 BLUETOOTH_GET_SOCKET, |
776 BLUETOOTH_GET_SOCKETS, | 776 BLUETOOTH_GET_SOCKETS, |
777 FILESYSTEMPROVIDER_UNMOUNT, | 777 FILESYSTEMPROVIDER_UNMOUNT, |
778 FILESYSTEMPROVIDERINTERNAL_UNMOUNTREQUESTEDSUCCESS, | 778 FILESYSTEMPROVIDERINTERNAL_UNMOUNTREQUESTEDSUCCESS, |
779 FILESYSTEMPROVIDERINTERNAL_UNMOUNTREQUESTEDERROR, | 779 FILESYSTEMPROVIDERINTERNAL_UNMOUNTREQUESTEDERROR, |
| 780 MEDIAGALLERIES_DROPPERMISSIONFORMEDIAFILESYSTEM, |
780 // Last entry: Add new entries above and ensure to update | 781 // Last entry: Add new entries above and ensure to update |
781 // tools/metrics/histograms/histograms/histograms.xml. | 782 // tools/metrics/histograms/histograms/histograms.xml. |
782 ENUM_BOUNDARY | 783 ENUM_BOUNDARY |
783 }; | 784 }; |
784 | 785 |
785 } // namespace functions | 786 } // namespace functions |
786 } // namespace extensions | 787 } // namespace extensions |
787 | 788 |
788 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ | 789 #endif // EXTENSIONS_BROWSER_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ |
OLD | NEW |