| 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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 FocusInOutEvent = 433, | 433 FocusInOutEvent = 433, |
| 434 MouseEventMovementX = 434, | 434 MouseEventMovementX = 434, |
| 435 MouseEventMovementY = 435, | 435 MouseEventMovementY = 435, |
| 436 MixedContentTextTrack = 436, | 436 MixedContentTextTrack = 436, |
| 437 MixedContentRaw = 437, | 437 MixedContentRaw = 437, |
| 438 MixedContentImage = 438, | 438 MixedContentImage = 438, |
| 439 MixedContentMedia = 439, | 439 MixedContentMedia = 439, |
| 440 DocumentFonts = 440, | 440 DocumentFonts = 440, |
| 441 MixedContentFormsSubmitted = 441, | 441 MixedContentFormsSubmitted = 441, |
| 442 FormsSubmitted = 442, | 442 FormsSubmitted = 442, |
| 443 EventTargetMissingArgs = 443, |
| 443 // Add new features immediately above this line. Don't change assigned | 444 // Add new features immediately above this line. Don't change assigned |
| 444 // numbers of any item, and don't reuse removed slots. | 445 // numbers of any item, and don't reuse removed slots. |
| 445 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ | 446 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ |
| 446 // to update the UMA mapping. | 447 // to update the UMA mapping. |
| 447 NumberOfFeatures, // This enum value must be last. | 448 NumberOfFeatures, // This enum value must be last. |
| 448 }; | 449 }; |
| 449 | 450 |
| 450 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 451 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
| 451 static void count(const Document&, Feature); | 452 static void count(const Document&, Feature); |
| 452 // This doesn't count for non-Document ExecutionContext. | 453 // This doesn't count for non-Document ExecutionContext. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 | 499 |
| 499 void updateMeasurements(); | 500 void updateMeasurements(); |
| 500 | 501 |
| 501 OwnPtr<BitVector> m_countBits; | 502 OwnPtr<BitVector> m_countBits; |
| 502 BitVector m_CSSFeatureBits; | 503 BitVector m_CSSFeatureBits; |
| 503 }; | 504 }; |
| 504 | 505 |
| 505 } // namespace WebCore | 506 } // namespace WebCore |
| 506 | 507 |
| 507 #endif // UseCounter_h | 508 #endif // UseCounter_h |
| OLD | NEW |