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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
427 CSSCharsetRuleEncoding = 426, | 427 CSSCharsetRuleEncoding = 426, |
428 DocumentSetCharset = 427, | 428 DocumentSetCharset = 427, |
429 DocumentDefaultCharset = 428, | 429 DocumentDefaultCharset = 428, |
430 TextEncoderConstructor = 429, | 430 TextEncoderConstructor = 429, |
431 TextEncoderEncode = 430, | 431 TextEncoderEncode = 430, |
432 TextDecoderConstructor = 431, | 432 TextDecoderConstructor = 431, |
433 TextDecoderDecode= 432, | 433 TextDecoderDecode= 432, |
434 FocusInOutEvent = 433, | 434 FocusInOutEvent = 433, |
435 MouseEventMovementX = 434, | 435 MouseEventMovementX = 434, |
436 MouseEventMovementY = 435, | 436 MouseEventMovementY = 435, |
437 MixedContentForm = 436, | |
Mike West
2014/06/06 12:18:18
I should have been more clear: I think it would be
mhm
2014/06/06 19:11:59
There is a counter already doing that (UseCounter:
| |
437 // Add new features immediately above this line. Don't change assigned | 438 // Add new features immediately above this line. Don't change assigned |
438 // numbers of any item, and don't reuse removed slots. | 439 // numbers of any item, and don't reuse removed slots. |
439 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ | 440 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ |
440 // to update the UMA mapping. | 441 // to update the UMA mapping. |
441 NumberOfFeatures, // This enum value must be last. | 442 NumberOfFeatures, // This enum value must be last. |
442 }; | 443 }; |
443 | 444 |
444 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 445 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
445 static void count(const Document&, Feature); | 446 static void count(const Document&, Feature); |
446 // This doesn't count for non-Document ExecutionContext. | 447 // This doesn't count for non-Document ExecutionContext. |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
492 | 493 |
493 void updateMeasurements(); | 494 void updateMeasurements(); |
494 | 495 |
495 OwnPtr<BitVector> m_countBits; | 496 OwnPtr<BitVector> m_countBits; |
496 BitVector m_CSSFeatureBits; | 497 BitVector m_CSSFeatureBits; |
497 }; | 498 }; |
498 | 499 |
499 } // namespace WebCore | 500 } // namespace WebCore |
500 | 501 |
501 #endif // UseCounter_h | 502 #endif // UseCounter_h |
OLD | NEW |