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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 VTTCueRenderVertical = 411, | 415 VTTCueRenderVertical = 411, |
416 VTTCueRenderSnapToLinesFalse = 412, | 416 VTTCueRenderSnapToLinesFalse = 412, |
417 VTTCueRenderLineNotAuto = 413, | 417 VTTCueRenderLineNotAuto = 413, |
418 VTTCueRenderPositionNot50 = 414, | 418 VTTCueRenderPositionNot50 = 414, |
419 VTTCueRenderSizeNot100 = 415, | 419 VTTCueRenderSizeNot100 = 415, |
420 VTTCueRenderAlignNotMiddle = 416, | 420 VTTCueRenderAlignNotMiddle = 416, |
421 ElementRequestPointerLock = 417, | 421 ElementRequestPointerLock = 417, |
422 VTTCueRenderRtl = 418, | 422 VTTCueRenderRtl = 418, |
423 PostMessageFromSecureToInsecure = 419, | 423 PostMessageFromSecureToInsecure = 419, |
424 PostMessageFromInsecureToSecure = 420, | 424 PostMessageFromInsecureToSecure = 420, |
| 425 DocumentExitPointerLock = 421, |
| 426 DocumentPointerLockElement = 422, |
425 // Add new features immediately above this line. Don't change assigned | 427 // Add new features immediately above this line. Don't change assigned |
426 // numbers of any item, and don't reuse removed slots. | 428 // numbers of any item, and don't reuse removed slots. |
427 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ | 429 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ |
428 // to update the UMA mapping. | 430 // to update the UMA mapping. |
429 NumberOfFeatures, // This enum value must be last. | 431 NumberOfFeatures, // This enum value must be last. |
430 }; | 432 }; |
431 | 433 |
432 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 434 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
433 static void count(const Document&, Feature); | 435 static void count(const Document&, Feature); |
434 static void count(const ExecutionContext*, Feature); | 436 static void count(const ExecutionContext*, Feature); |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 | 481 |
480 void updateMeasurements(); | 482 void updateMeasurements(); |
481 | 483 |
482 OwnPtr<BitVector> m_countBits; | 484 OwnPtr<BitVector> m_countBits; |
483 BitVector m_CSSFeatureBits; | 485 BitVector m_CSSFeatureBits; |
484 }; | 486 }; |
485 | 487 |
486 } // namespace WebCore | 488 } // namespace WebCore |
487 | 489 |
488 #endif // UseCounter_h | 490 #endif // UseCounter_h |
OLD | NEW |