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 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
776 V8Console_Memory_AttributeGetter = 877, | 776 V8Console_Memory_AttributeGetter = 877, |
777 V8Console_Memory_AttributeSetter = 878, | 777 V8Console_Memory_AttributeSetter = 878, |
778 V8MemoryInfo_TotalJSHeapSize_AttributeGetter = 879, | 778 V8MemoryInfo_TotalJSHeapSize_AttributeGetter = 879, |
779 V8MemoryInfo_UsedJSHeapSize_AttributeGetter = 880, | 779 V8MemoryInfo_UsedJSHeapSize_AttributeGetter = 880, |
780 V8MemoryInfo_JSHeapSizeLimit_AttributeGetter = 881, | 780 V8MemoryInfo_JSHeapSizeLimit_AttributeGetter = 881, |
781 V8Performance_Timing_AttributeGetter = 882, | 781 V8Performance_Timing_AttributeGetter = 882, |
782 V8Performance_Navigation_AttributeGetter = 883, | 782 V8Performance_Navigation_AttributeGetter = 883, |
783 V8Performance_Memory_AttributeGetter = 884, | 783 V8Performance_Memory_AttributeGetter = 884, |
784 V8SharedWorker_WorkerStart_AttributeGetter = 885, | 784 V8SharedWorker_WorkerStart_AttributeGetter = 885, |
785 HTMLKeygenElement = 886, | 785 HTMLKeygenElement = 886, |
| 786 // The above items are available in M45 branch. |
| 787 |
786 V8SVGElement_OffsetParent_AttributeGetter = 887, | 788 V8SVGElement_OffsetParent_AttributeGetter = 887, |
787 V8SVGElement_OffsetTop_AttributeGetter = 888, | 789 V8SVGElement_OffsetTop_AttributeGetter = 888, |
788 V8SVGElement_OffsetLeft_AttributeGetter = 889, | 790 V8SVGElement_OffsetLeft_AttributeGetter = 889, |
789 V8SVGElement_OffsetWidth_AttributeGetter = 890, | 791 V8SVGElement_OffsetWidth_AttributeGetter = 890, |
790 V8SVGElement_OffsetHeight_AttributeGetter = 891, | 792 V8SVGElement_OffsetHeight_AttributeGetter = 891, |
791 | 793 |
792 // Add new features immediately above this line. Don't change assigned | 794 // Add new features immediately above this line. Don't change assigned |
793 // numbers of any item, and don't reuse removed slots. | 795 // numbers of any item, and don't reuse removed slots. |
794 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ | 796 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ |
795 // to update the UMA mapping. | 797 // to update the UMA mapping. |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
884 | 886 |
885 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } | 887 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR
ecordedMeasurement(feature); } |
886 | 888 |
887 CountBits m_countBits; | 889 CountBits m_countBits; |
888 BitVector m_CSSFeatureBits; | 890 BitVector m_CSSFeatureBits; |
889 }; | 891 }; |
890 | 892 |
891 } // namespace blink | 893 } // namespace blink |
892 | 894 |
893 #endif // UseCounter_h | 895 #endif // UseCounter_h |
OLD | NEW |