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 1083 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1094 ScriptPassesCSPNonce = 1276, | 1094 ScriptPassesCSPNonce = 1276, |
1095 CSPWithUnsafeDynamic = 1277, | 1095 CSPWithUnsafeDynamic = 1277, |
1096 ScrollAnchored = 1278, | 1096 ScrollAnchored = 1278, |
1097 AddEventListenerFourArguments = 1279, | 1097 AddEventListenerFourArguments = 1279, |
1098 RemoveEventListenerFourArguments = 1280, | 1098 RemoveEventListenerFourArguments = 1280, |
1099 InvalidReportUriDirectiveInMetaCSP = 1281, | 1099 InvalidReportUriDirectiveInMetaCSP = 1281, |
1100 InvalidSandboxDirectiveInMetaCSP = 1282, | 1100 InvalidSandboxDirectiveInMetaCSP = 1282, |
1101 InvalidFrameAncestorsDirectiveInMetaCSP = 1283, | 1101 InvalidFrameAncestorsDirectiveInMetaCSP = 1283, |
1102 TouchDragUserGestureUsed = 1284, | 1102 TouchDragUserGestureUsed = 1284, |
1103 TouchDragUserGestureUsedCrossOrigin = 1285, | 1103 TouchDragUserGestureUsedCrossOrigin = 1285, |
| 1104 DocumentCreateEventForeignFetchEvent = 1286, |
1104 | 1105 |
1105 // Add new features immediately above this line. Don't change assigned | 1106 // Add new features immediately above this line. Don't change assigned |
1106 // numbers of any item, and don't reuse removed slots. | 1107 // numbers of any item, and don't reuse removed slots. |
1107 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ | 1108 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ |
1108 // to update the UMA mapping. | 1109 // to update the UMA mapping. |
1109 NumberOfFeatures, // This enum value must be last. | 1110 NumberOfFeatures, // This enum value must be last. |
1110 }; | 1111 }; |
1111 | 1112 |
1112 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 1113 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
1113 static void count(const Frame*, Feature); | 1114 static void count(const Frame*, Feature); |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1188 friend class UseCounterTest; | 1189 friend class UseCounterTest; |
1189 static int m_muteCount; | 1190 static int m_muteCount; |
1190 | 1191 |
1191 CountBits m_countBits; | 1192 CountBits m_countBits; |
1192 BitVector m_CSSFeatureBits; | 1193 BitVector m_CSSFeatureBits; |
1193 }; | 1194 }; |
1194 | 1195 |
1195 } // namespace blink | 1196 } // namespace blink |
1196 | 1197 |
1197 #endif // UseCounter_h | 1198 #endif // UseCounter_h |
OLD | NEW |