| 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 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1198 V8ArrayProtectorDirtied = 1390, | 1198 V8ArrayProtectorDirtied = 1390, |
| 1199 V8ArraySpeciesModified = 1391, | 1199 V8ArraySpeciesModified = 1391, |
| 1200 V8ArrayPrototypeConstructorModified = 1392, | 1200 V8ArrayPrototypeConstructorModified = 1392, |
| 1201 V8ArrayInstanceProtoModified = 1393, | 1201 V8ArrayInstanceProtoModified = 1393, |
| 1202 V8ArrayInstanceConstructorModified = 1394, | 1202 V8ArrayInstanceConstructorModified = 1394, |
| 1203 V8LegacyFunctionDeclaration = 1395, | 1203 V8LegacyFunctionDeclaration = 1395, |
| 1204 V8RegExpPrototypeSourceGetter = 1396, | 1204 V8RegExpPrototypeSourceGetter = 1396, |
| 1205 V8RegExpPrototypeOldFlagGetter = 1397, | 1205 V8RegExpPrototypeOldFlagGetter = 1397, |
| 1206 V8DecimalWithLeadingZeroInStrictMode = 1398, | 1206 V8DecimalWithLeadingZeroInStrictMode = 1398, |
| 1207 FormSubmissionNotInDocumentTree = 1399, | 1207 FormSubmissionNotInDocumentTree = 1399, |
| 1208 OpenSearchInsecureOriginInsecureTarget = 1400, |
| 1209 OpenSearchInsecureOriginSecureTarget = 1401, |
| 1210 OpenSearchSecureOriginInsecureTarget = 1402, |
| 1211 OpenSearchSecureOriginSecureTarget = 1403, |
| 1212 RegisterProtocolHandlerSecureOrigin = 1404, |
| 1213 RegisterProtocolHandlerInsecureOrigin = 1405, |
| 1208 | 1214 |
| 1209 // Add new features immediately above this line. Don't change assigned | 1215 // Add new features immediately above this line. Don't change assigned |
| 1210 // numbers of any item, and don't reuse removed slots. | 1216 // numbers of any item, and don't reuse removed slots. |
| 1211 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ | 1217 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ |
| 1212 // to update the UMA mapping. | 1218 // to update the UMA mapping. |
| 1213 NumberOfFeatures, // This enum value must be last. | 1219 NumberOfFeatures, // This enum value must be last. |
| 1214 }; | 1220 }; |
| 1215 | 1221 |
| 1216 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 1222 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
| 1217 static void count(const Frame*, Feature); | 1223 static void count(const Frame*, Feature); |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1292 friend class UseCounterTest; | 1298 friend class UseCounterTest; |
| 1293 static int m_muteCount; | 1299 static int m_muteCount; |
| 1294 | 1300 |
| 1295 CountBits m_countBits; | 1301 CountBits m_countBits; |
| 1296 BitVector m_CSSFeatureBits; | 1302 BitVector m_CSSFeatureBits; |
| 1297 }; | 1303 }; |
| 1298 | 1304 |
| 1299 } // namespace blink | 1305 } // namespace blink |
| 1300 | 1306 |
| 1301 #endif // UseCounter_h | 1307 #endif // UseCounter_h |
| OLD | NEW |