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 GetUserMediaPrefixed = 1400, |
| 1209 GetUserMediaLegacy = 1401, |
| 1210 GetUserMediaPromise = 1402, |
1208 | 1211 |
1209 // Add new features immediately above this line. Don't change assigned | 1212 // Add new features immediately above this line. Don't change assigned |
1210 // numbers of any item, and don't reuse removed slots. | 1213 // 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/ | 1214 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ |
1212 // to update the UMA mapping. | 1215 // to update the UMA mapping. |
1213 NumberOfFeatures, // This enum value must be last. | 1216 NumberOfFeatures, // This enum value must be last. |
1214 }; | 1217 }; |
1215 | 1218 |
1216 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 1219 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
1217 static void count(const Frame*, Feature); | 1220 static void count(const Frame*, Feature); |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1292 friend class UseCounterTest; | 1295 friend class UseCounterTest; |
1293 static int m_muteCount; | 1296 static int m_muteCount; |
1294 | 1297 |
1295 CountBits m_countBits; | 1298 CountBits m_countBits; |
1296 BitVector m_CSSFeatureBits; | 1299 BitVector m_CSSFeatureBits; |
1297 }; | 1300 }; |
1298 | 1301 |
1299 } // namespace blink | 1302 } // namespace blink |
1300 | 1303 |
1301 #endif // UseCounter_h | 1304 #endif // UseCounter_h |
OLD | NEW |