OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_EXTENSIONS_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ |
7 | 7 |
8 | 8 |
9 namespace extensions { | 9 namespace extensions { |
10 namespace functions { | 10 namespace functions { |
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
624 NETWORKINGPRIVATE_CREATENETWORK, | 624 NETWORKINGPRIVATE_CREATENETWORK, |
625 BRAILLEDISPLAYPRIVATE_GETDISPLAYSTATE, | 625 BRAILLEDISPLAYPRIVATE_GETDISPLAYSTATE, |
626 BRAILLEDISPLAYPRIVATE_WRITEDOTS, | 626 BRAILLEDISPLAYPRIVATE_WRITEDOTS, |
627 USB_GETDEVICES, | 627 USB_GETDEVICES, |
628 USB_REQUESTACCESS, | 628 USB_REQUESTACCESS, |
629 USB_OPENDEVICE, | 629 USB_OPENDEVICE, |
630 ACTIVITYLOGPRIVATE_DELETEDATABASE, | 630 ACTIVITYLOGPRIVATE_DELETEDATABASE, |
631 ACTIVITYLOGPRIVATE_DELETEURLS, | 631 ACTIVITYLOGPRIVATE_DELETEURLS, |
632 FILEBROWSERPRIVATE_REQUESTWEBSTOREACCESSTOKEN, | 632 FILEBROWSERPRIVATE_REQUESTWEBSTOREACCESSTOKEN, |
633 RECOVERYPRIVATE_LISTREMOVABLESTORAGEDEVICES, | 633 RECOVERYPRIVATE_LISTREMOVABLESTORAGEDEVICES, |
634 VIRTUALKEYBOARDPRIVATE_HIDEKEYBOARD, | |
kevers
2013/09/12 18:55:35
This enum should probably be in /tools/metrics/his
SteveT
2013/09/13 01:45:29
Thanks for the reminder. Done.
| |
634 ENUM_BOUNDARY // Last entry: Add new entries above. | 635 ENUM_BOUNDARY // Last entry: Add new entries above. |
635 }; | 636 }; |
636 | 637 |
637 } // namespace functions | 638 } // namespace functions |
638 } // namespace extensions | 639 } // namespace extensions |
639 | 640 |
640 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ | 641 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_FUNCTION_HISTOGRAM_VALUE_H_ |
OLD | NEW |