| 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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 WheelEventWheelDeltaX = 491, | 484 WheelEventWheelDeltaX = 491, |
| 485 WheelEventWheelDeltaY = 492, | 485 WheelEventWheelDeltaY = 492, |
| 486 WheelEventWheelDelta = 493, | 486 WheelEventWheelDelta = 493, |
| 487 SendBeacon = 494, | 487 SendBeacon = 494, |
| 488 SendBeaconQuotaExceeded = 495, | 488 SendBeaconQuotaExceeded = 495, |
| 489 HTMLHtmlElementVersion = 496, | 489 HTMLHtmlElementVersion = 496, |
| 490 HTMLMetaElementScheme = 497, | 490 HTMLMetaElementScheme = 497, |
| 491 HTMLObjectElementStandby = 498, | 491 HTMLObjectElementStandby = 498, |
| 492 HTMLTableCellElementChar = 499, | 492 HTMLTableCellElementChar = 499, |
| 493 HTMLTableCellElementCharOff = 500, | 493 HTMLTableCellElementCharOff = 500, |
| 494 SVGSMILElementInDocument = 501, |
| 494 // Add new features immediately above this line. Don't change assigned | 495 // Add new features immediately above this line. Don't change assigned |
| 495 // numbers of any item, and don't reuse removed slots. | 496 // numbers of any item, and don't reuse removed slots. |
| 496 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ | 497 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ |
| 497 // to update the UMA mapping. | 498 // to update the UMA mapping. |
| 498 NumberOfFeatures, // This enum value must be last. | 499 NumberOfFeatures, // This enum value must be last. |
| 499 }; | 500 }; |
| 500 | 501 |
| 501 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 502 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
| 502 static void count(const Document&, Feature); | 503 static void count(const Document&, Feature); |
| 503 // This doesn't count for ExecutionContexts for shared workers and service | 504 // This doesn't count for ExecutionContexts for shared workers and service |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 | 555 |
| 555 void updateMeasurements(); | 556 void updateMeasurements(); |
| 556 | 557 |
| 557 OwnPtr<BitVector> m_countBits; | 558 OwnPtr<BitVector> m_countBits; |
| 558 BitVector m_CSSFeatureBits; | 559 BitVector m_CSSFeatureBits; |
| 559 }; | 560 }; |
| 560 | 561 |
| 561 } // namespace blink | 562 } // namespace blink |
| 562 | 563 |
| 563 #endif // UseCounter_h | 564 #endif // UseCounter_h |
| OLD | NEW |