| 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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 MixedContentAudio = 611, | 554 MixedContentAudio = 611, |
| 555 MixedContentDownload = 612, | 555 MixedContentDownload = 612, |
| 556 MixedContentFavicon = 613, | 556 MixedContentFavicon = 613, |
| 557 MixedContentImage = 614, | 557 MixedContentImage = 614, |
| 558 MixedContentInternal = 615, | 558 MixedContentInternal = 615, |
| 559 MixedContentPlugin = 616, | 559 MixedContentPlugin = 616, |
| 560 MixedContentPrefetch = 617, | 560 MixedContentPrefetch = 617, |
| 561 MixedContentVideo = 618, | 561 MixedContentVideo = 618, |
| 562 CORSCredentialedNullOriginAccessAllowed = 619, | 562 CORSCredentialedNullOriginAccessAllowed = 619, |
| 563 | 563 |
| 564 // WebAudio deprecated doppler feature of panner/listener nodes. |
| 565 DeprecatedDopplerFactor = 620, |
| 566 DeprecatedSpeedOfSound = 621, |
| 567 DeprecatedSetVelocity = 622, |
| 568 |
| 564 // Add new features immediately above this line. Don't change assigned | 569 // Add new features immediately above this line. Don't change assigned |
| 565 // numbers of any item, and don't reuse removed slots. | 570 // numbers of any item, and don't reuse removed slots. |
| 566 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ | 571 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ |
| 567 // to update the UMA mapping. | 572 // to update the UMA mapping. |
| 568 NumberOfFeatures, // This enum value must be last. | 573 NumberOfFeatures, // This enum value must be last. |
| 569 }; | 574 }; |
| 570 | 575 |
| 571 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 576 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
| 572 static void count(const Frame*, Feature); | 577 static void count(const Frame*, Feature); |
| 573 static void count(const Document&, Feature); | 578 static void count(const Document&, Feature); |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 | 641 |
| 637 void updateMeasurements(); | 642 void updateMeasurements(); |
| 638 | 643 |
| 639 OwnPtr<BitVector> m_countBits; | 644 OwnPtr<BitVector> m_countBits; |
| 640 BitVector m_CSSFeatureBits; | 645 BitVector m_CSSFeatureBits; |
| 641 }; | 646 }; |
| 642 | 647 |
| 643 } // namespace blink | 648 } // namespace blink |
| 644 | 649 |
| 645 #endif // UseCounter_h | 650 #endif // UseCounter_h |
| OLD | NEW |