Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Side by Side Diff: third_party/WebKit/Source/core/frame/UseCounter.h

Issue 2825683002: Add a comments about counter availability in M58/M59 (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1440 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 kCanvasToDataURL = 1833, 1451 kCanvasToDataURL = 1833,
1452 kOffscreenCanvasConvertToBlob = 1834, 1452 kOffscreenCanvasConvertToBlob = 1834,
1453 kSVGInCanvas2D = 1835, 1453 kSVGInCanvas2D = 1835,
1454 kSVGInWebGL = 1836, 1454 kSVGInWebGL = 1836,
1455 kSelectionFuncionsChangeFocus = 1837, 1455 kSelectionFuncionsChangeFocus = 1837,
1456 kHTMLObjectElementGetter = 1838, 1456 kHTMLObjectElementGetter = 1838,
1457 kHTMLObjectElementSetter = 1839, 1457 kHTMLObjectElementSetter = 1839,
1458 kHTMLEmbedElementGetter = 1840, 1458 kHTMLEmbedElementGetter = 1840,
1459 kHTMLEmbedElementSetter = 1841, 1459 kHTMLEmbedElementSetter = 1841,
1460 kTransformUsesBoxSizeOnSVG = 1842, 1460 kTransformUsesBoxSizeOnSVG = 1842,
1461 // The above items are available in M58 branch.
1462
1461 kScrollByKeyboardArrowKeys = 1843, 1463 kScrollByKeyboardArrowKeys = 1843,
1462 kScrollByKeyboardPageUpDownKeys = 1844, 1464 kScrollByKeyboardPageUpDownKeys = 1844,
1463 kScrollByKeyboardHomeEndKeys = 1845, 1465 kScrollByKeyboardHomeEndKeys = 1845,
1464 kScrollByKeyboardSpacebarKey = 1846, 1466 kScrollByKeyboardSpacebarKey = 1846,
1465 kScrollByTouch = 1847, 1467 kScrollByTouch = 1847,
1466 kScrollByWheel = 1848, 1468 kScrollByWheel = 1848,
1467 kScheduledActionIgnored = 1849, 1469 kScheduledActionIgnored = 1849,
1468 kGetCanvas2DContextAttributes = 1850, 1470 kGetCanvas2DContextAttributes = 1850,
1469 kV8HTMLInputElement_Capture_AttributeGetter = 1851, 1471 kV8HTMLInputElement_Capture_AttributeGetter = 1851,
1470 kV8HTMLInputElement_Capture_AttributeSetter = 1852, 1472 kV8HTMLInputElement_Capture_AttributeSetter = 1852,
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
1566 kMediaStreamConstraintsGoogNoiseSuppression = 1951, 1568 kMediaStreamConstraintsGoogNoiseSuppression = 1951,
1567 kMediaStreamConstraintsGoogHighpassFilter = 1952, 1569 kMediaStreamConstraintsGoogHighpassFilter = 1952,
1568 kMediaStreamConstraintsGoogTypingNoiseDetection = 1953, 1570 kMediaStreamConstraintsGoogTypingNoiseDetection = 1953,
1569 kMediaStreamConstraintsGoogExperimentalNoiseSuppression = 1954, 1571 kMediaStreamConstraintsGoogExperimentalNoiseSuppression = 1954,
1570 kMediaStreamConstraintsGoogBeamforming = 1955, 1572 kMediaStreamConstraintsGoogBeamforming = 1955,
1571 kMediaStreamConstraintsGoogArrayGeometry = 1956, 1573 kMediaStreamConstraintsGoogArrayGeometry = 1956,
1572 kMediaStreamConstraintsGoogAudioMirroring = 1957, 1574 kMediaStreamConstraintsGoogAudioMirroring = 1957,
1573 kMediaStreamConstraintsGoogDAEchoCancellation = 1958, 1575 kMediaStreamConstraintsGoogDAEchoCancellation = 1958,
1574 kMediaStreamConstraintsGoogNoiseReduction = 1959, 1576 kMediaStreamConstraintsGoogNoiseReduction = 1959,
1575 kMediaStreamConstraintsGoogPowerLineFrequency = 1960, 1577 kMediaStreamConstraintsGoogPowerLineFrequency = 1960,
1578 // The above items are available in M59 branch.
1579
1576 kViewportFixedPositionUnderFilter = 1961, 1580 kViewportFixedPositionUnderFilter = 1961,
1577 1581
1578 // Add new features immediately above this line. Don't change assigned 1582 // Add new features immediately above this line. Don't change assigned
1579 // numbers of any item, and don't reuse removed slots. 1583 // numbers of any item, and don't reuse removed slots.
1580 // Also, run update_use_counter_feature_enum.py in 1584 // Also, run update_use_counter_feature_enum.py in
1581 // chromium/src/tools/metrics/histograms/ to update the UMA mapping. 1585 // chromium/src/tools/metrics/histograms/ to update the UMA mapping.
1582 kNumberOfFeatures, // This enum value must be last. 1586 kNumberOfFeatures, // This enum value must be last.
1583 }; 1587 };
1584 1588
1585 // An interface to observe UseCounter changes. Note that this is never 1589 // An interface to observe UseCounter changes. Note that this is never
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1686 // Tracks what features/properties need to be reported to the legacy 1690 // Tracks what features/properties need to be reported to the legacy
1687 // histograms. 1691 // histograms.
1688 BitVector feature_bits_; 1692 BitVector feature_bits_;
1689 BitVector css_bits_; 1693 BitVector css_bits_;
1690 } legacy_counter_; 1694 } legacy_counter_;
1691 }; 1695 };
1692 1696
1693 } // namespace blink 1697 } // namespace blink
1694 1698
1695 #endif // UseCounter_h 1699 #endif // UseCounter_h
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698