| 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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 TextDecoderConstructor = 431, | 431 TextDecoderConstructor = 431, |
| 432 TextDecoderDecode= 432, | 432 TextDecoderDecode= 432, |
| 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 // Editing related Blink specific events. |
| 442 TextInputEventOnInput = 441, |
| 443 TextInputEventOnTextArea = 442, |
| 444 TextInputEventOnContentEditable= 443, |
| 445 TextInputEventOnNotNode = 444, |
| 446 WebkitBeforeTextInsertedOnInput = 445, |
| 447 WebkitBeforeTextInsertedOnTextArea = 446, |
| 448 WebkitBeforeTextInsertedOnContentEditable = 447, |
| 449 WebkitBeforeTextInsertedOnNotNode = 448, |
| 450 WebkitEditableContentChangedOnInput = 449, |
| 451 WebkitEditableContentChangedOnTextArea = 450, |
| 452 WebkitEditableContentChangedOnContentEditable = 451, |
| 453 WebkitEditableContentChangedOnNotNode = 452, |
| 441 // Add new features immediately above this line. Don't change assigned | 454 // Add new features immediately above this line. Don't change assigned |
| 442 // numbers of any item, and don't reuse removed slots. | 455 // numbers of any item, and don't reuse removed slots. |
| 443 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ | 456 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ |
| 444 // to update the UMA mapping. | 457 // to update the UMA mapping. |
| 445 NumberOfFeatures, // This enum value must be last. | 458 NumberOfFeatures, // This enum value must be last. |
| 446 }; | 459 }; |
| 447 | 460 |
| 448 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 461 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
| 449 static void count(const Document&, Feature); | 462 static void count(const Document&, Feature); |
| 450 // This doesn't count for non-Document ExecutionContext. | 463 // This doesn't count for non-Document ExecutionContext. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 | 509 |
| 497 void updateMeasurements(); | 510 void updateMeasurements(); |
| 498 | 511 |
| 499 OwnPtr<BitVector> m_countBits; | 512 OwnPtr<BitVector> m_countBits; |
| 500 BitVector m_CSSFeatureBits; | 513 BitVector m_CSSFeatureBits; |
| 501 }; | 514 }; |
| 502 | 515 |
| 503 } // namespace WebCore | 516 } // namespace WebCore |
| 504 | 517 |
| 505 #endif // UseCounter_h | 518 #endif // UseCounter_h |
| OLD | NEW |