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 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1092 ImageDocument = 1274, | 1092 ImageDocument = 1274, |
1093 ScriptPassesCSPDynamic = 1275, | 1093 ScriptPassesCSPDynamic = 1275, |
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 DocumentCreateEventForeignFetchEvent = 1284, |
1102 | 1103 |
1103 // Add new features immediately above this line. Don't change assigned | 1104 // Add new features immediately above this line. Don't change assigned |
1104 // numbers of any item, and don't reuse removed slots. | 1105 // numbers of any item, and don't reuse removed slots. |
1105 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ | 1106 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ |
1106 // to update the UMA mapping. | 1107 // to update the UMA mapping. |
1107 NumberOfFeatures, // This enum value must be last. | 1108 NumberOfFeatures, // This enum value must be last. |
1108 }; | 1109 }; |
1109 | 1110 |
1110 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 1111 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
1111 static void count(const Frame*, Feature); | 1112 static void count(const Frame*, Feature); |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1186 friend class UseCounterTest; | 1187 friend class UseCounterTest; |
1187 static int m_muteCount; | 1188 static int m_muteCount; |
1188 | 1189 |
1189 CountBits m_countBits; | 1190 CountBits m_countBits; |
1190 BitVector m_CSSFeatureBits; | 1191 BitVector m_CSSFeatureBits; |
1191 }; | 1192 }; |
1192 | 1193 |
1193 } // namespace blink | 1194 } // namespace blink |
1194 | 1195 |
1195 #endif // UseCounter_h | 1196 #endif // UseCounter_h |
OLD | NEW |