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 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 AutocapitalizeAttribute = 764, | 680 AutocapitalizeAttribute = 764, |
681 FullscreenSecureOrigin = 765, | 681 FullscreenSecureOrigin = 765, |
682 FullscreenInsecureOrigin = 766, | 682 FullscreenInsecureOrigin = 766, |
683 DialogInSandboxedContext = 767, | 683 DialogInSandboxedContext = 767, |
684 SVGSMILAnimationInImageRegardlessOfCache = 768, | 684 SVGSMILAnimationInImageRegardlessOfCache = 768, |
685 PushSubscriptionId = 769, | 685 PushSubscriptionId = 769, |
686 EncryptedMediaSecureOrigin = 770, | 686 EncryptedMediaSecureOrigin = 770, |
687 EncryptedMediaInsecureOrigin = 771, | 687 EncryptedMediaInsecureOrigin = 771, |
688 PerformanceFrameTiming = 772, | 688 PerformanceFrameTiming = 772, |
689 V8Element_Animate_Method = 773, | 689 V8Element_Animate_Method = 773, |
| 690 // The above items are available in M44 branch. |
| 691 |
690 V8SVGSVGElement_PixelUnitToMillimeterX_AttributeGetter = 774, | 692 V8SVGSVGElement_PixelUnitToMillimeterX_AttributeGetter = 774, |
691 V8SVGSVGElement_PixelUnitToMillimeterY_AttributeGetter = 775, | 693 V8SVGSVGElement_PixelUnitToMillimeterY_AttributeGetter = 775, |
692 V8SVGSVGElement_ScreenPixelToMillimeterX_AttributeGetter = 776, | 694 V8SVGSVGElement_ScreenPixelToMillimeterX_AttributeGetter = 776, |
693 V8SVGSVGElement_ScreenPixelToMillimeterY_AttributeGetter = 777, | 695 V8SVGSVGElement_ScreenPixelToMillimeterY_AttributeGetter = 777, |
694 V8SVGSVGElement_GetElementById_Method = 778, | 696 V8SVGSVGElement_GetElementById_Method = 778, |
695 | 697 |
696 // Add new features immediately above this line. Don't change assigned | 698 // Add new features immediately above this line. Don't change assigned |
697 // numbers of any item, and don't reuse removed slots. | 699 // numbers of any item, and don't reuse removed slots. |
698 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ | 700 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ |
699 // to update the UMA mapping. | 701 // to update the UMA mapping. |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 | 790 |
789 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } | 791 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } |
790 | 792 |
791 CountBits m_countBits; | 793 CountBits m_countBits; |
792 BitVector m_CSSFeatureBits; | 794 BitVector m_CSSFeatureBits; |
793 }; | 795 }; |
794 | 796 |
795 } // namespace blink | 797 } // namespace blink |
796 | 798 |
797 #endif // UseCounter_h | 799 #endif // UseCounter_h |
OLD | NEW |