| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google, Inc. All rights reserved. | 2 * Copyright (C) 2012 Google, Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 865 SelectionAddRange = 1004, | 865 SelectionAddRange = 1004, |
| 866 SelectionRemoveAllRanges = 1005, | 866 SelectionRemoveAllRanges = 1005, |
| 867 SelectionCollapse = 1006, | 867 SelectionCollapse = 1006, |
| 868 SelectionCollapseToStart = 1007, | 868 SelectionCollapseToStart = 1007, |
| 869 SelectionCollapseToEnd = 1008, | 869 SelectionCollapseToEnd = 1008, |
| 870 SelectionExtend = 1009, | 870 SelectionExtend = 1009, |
| 871 SelectionSelectAllChildren = 1010, | 871 SelectionSelectAllChildren = 1010, |
| 872 SelectionDeleteDromDocument = 1011, | 872 SelectionDeleteDromDocument = 1011, |
| 873 SelectionDOMString = 1012, | 873 SelectionDOMString = 1012, |
| 874 InputTypeRangeVerticalAppearance = 1013, | 874 InputTypeRangeVerticalAppearance = 1013, |
| 875 // The above items are available in M48 branch. |
| 876 |
| 875 CSSFilterReference = 1014, | 877 CSSFilterReference = 1014, |
| 876 CSSFilterGrayscale = 1015, | 878 CSSFilterGrayscale = 1015, |
| 877 CSSFilterSepia = 1016, | 879 CSSFilterSepia = 1016, |
| 878 CSSFilterSaturate = 1017, | 880 CSSFilterSaturate = 1017, |
| 879 CSSFilterHueRotate = 1018, | 881 CSSFilterHueRotate = 1018, |
| 880 CSSFilterInvert = 1019, | 882 CSSFilterInvert = 1019, |
| 881 CSSFilterOpacity = 1020, | 883 CSSFilterOpacity = 1020, |
| 882 CSSFilterBrightness = 1021, | 884 CSSFilterBrightness = 1021, |
| 883 CSSFilterContrast = 1022, | 885 CSSFilterContrast = 1022, |
| 884 CSSFilterBlur = 1023, | 886 CSSFilterBlur = 1023, |
| 885 CSSFilterDropShadow = 1024, | 887 CSSFilterDropShadow = 1024, |
| 886 BackgroundSyncRegister = 1025, | 888 BackgroundSyncRegister = 1025, |
| 887 BorderImageWithBorderStyleNone = 1026, | 889 BorderImageWithBorderStyleNone = 1026, |
| 890 ExecCommandOnInputOrTextarea = 1027, |
| 888 | 891 |
| 889 // Add new features immediately above this line. Don't change assigned | 892 // Add new features immediately above this line. Don't change assigned |
| 890 // numbers of any item, and don't reuse removed slots. | 893 // numbers of any item, and don't reuse removed slots. |
| 891 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ | 894 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ |
| 892 // to update the UMA mapping. | 895 // to update the UMA mapping. |
| 893 NumberOfFeatures, // This enum value must be last. | 896 NumberOfFeatures, // This enum value must be last. |
| 894 }; | 897 }; |
| 895 | 898 |
| 896 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 899 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
| 897 static void count(const Frame*, Feature); | 900 static void count(const Frame*, Feature); |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 982 | 985 |
| 983 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } | 986 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } |
| 984 | 987 |
| 985 CountBits m_countBits; | 988 CountBits m_countBits; |
| 986 BitVector m_CSSFeatureBits; | 989 BitVector m_CSSFeatureBits; |
| 987 }; | 990 }; |
| 988 | 991 |
| 989 } // namespace blink | 992 } // namespace blink |
| 990 | 993 |
| 991 #endif // UseCounter_h | 994 #endif // UseCounter_h |
| OLD | NEW |