Chromium Code Reviews| 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 1261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1272 SlotChangeEventAddListener = 1468, | 1272 SlotChangeEventAddListener = 1468, |
| 1273 CSSValueAppearanceButtonRendered = 1469, | 1273 CSSValueAppearanceButtonRendered = 1469, |
| 1274 CSSValueAppearanceButtonForAnchor = 1470, | 1274 CSSValueAppearanceButtonForAnchor = 1470, |
| 1275 CSSValueAppearanceButtonForButton = 1471, | 1275 CSSValueAppearanceButtonForButton = 1471, |
| 1276 CSSValueAppearanceButtonForOtherButtons = 1472, | 1276 CSSValueAppearanceButtonForOtherButtons = 1472, |
| 1277 CSSValueAppearanceTextFieldRendered = 1473, | 1277 CSSValueAppearanceTextFieldRendered = 1473, |
| 1278 CSSValueAppearanceTextFieldForSearch = 1474, | 1278 CSSValueAppearanceTextFieldForSearch = 1474, |
| 1279 CSSValueAppearanceTextFieldForTextField = 1475, | 1279 CSSValueAppearanceTextFieldForTextField = 1475, |
| 1280 RTCPeerConnectionGetStats = 1476, | 1280 RTCPeerConnectionGetStats = 1476, |
| 1281 SVGSMILAnimationAppliedEffect = 1477, | 1281 SVGSMILAnimationAppliedEffect = 1477, |
| 1282 EventSourceDocument = 1478, | |
| 1283 EventSourceWorker = 1479, | |
| 1282 | 1284 |
| 1283 PerformanceResourceTimingSizes = 1478, | 1285 PerformanceResourceTimingSizes = 1478, |
|
Mike West
2016/07/28 12:34:11
Yours need to come after this.
Mike West
2016/07/28 12:34:39
(Maybe remove the extraneous whitespace, as it's c
mlamouri (slow - plz ping)
2016/07/28 12:39:43
Yes indeed, this empty line tricked me well :)
| |
| 1284 | 1286 |
| 1285 // Add new features immediately above this line. Don't change assigned | 1287 // Add new features immediately above this line. Don't change assigned |
| 1286 // numbers of any item, and don't reuse removed slots. | 1288 // numbers of any item, and don't reuse removed slots. |
| 1287 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ | 1289 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ |
| 1288 // to update the UMA mapping. | 1290 // to update the UMA mapping. |
| 1289 NumberOfFeatures, // This enum value must be last. | 1291 NumberOfFeatures, // This enum value must be last. |
| 1290 }; | 1292 }; |
| 1291 | 1293 |
| 1292 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 1294 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
| 1293 static void count(const Frame*, Feature); | 1295 static void count(const Frame*, Feature); |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1368 friend class UseCounterTest; | 1370 friend class UseCounterTest; |
| 1369 static int m_muteCount; | 1371 static int m_muteCount; |
| 1370 | 1372 |
| 1371 CountBits m_countBits; | 1373 CountBits m_countBits; |
| 1372 BitVector m_CSSFeatureBits; | 1374 BitVector m_CSSFeatureBits; |
| 1373 }; | 1375 }; |
| 1374 | 1376 |
| 1375 } // namespace blink | 1377 } // namespace blink |
| 1376 | 1378 |
| 1377 #endif // UseCounter_h | 1379 #endif // UseCounter_h |
| OLD | NEW |