Chromium Code Reviews| 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 1589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1600 kCredentialManagerCustomFetch = 1988, | 1600 kCredentialManagerCustomFetch = 1988, |
| 1601 kNetInfoRtt = 1989, | 1601 kNetInfoRtt = 1989, |
| 1602 kNetInfoDownlink = 1990, | 1602 kNetInfoDownlink = 1990, |
| 1603 kShapeDetection_BarcodeDetectorConstructor = 1991, | 1603 kShapeDetection_BarcodeDetectorConstructor = 1991, |
| 1604 kShapeDetection_FaceDetectorConstructor = 1992, | 1604 kShapeDetection_FaceDetectorConstructor = 1992, |
| 1605 kShapeDetection_TextDetectorConstructor = 1993, | 1605 kShapeDetection_TextDetectorConstructor = 1993, |
| 1606 kCredentialManagerCredentialRequestOptionsOnlyUnmediated = 1994, | 1606 kCredentialManagerCredentialRequestOptionsOnlyUnmediated = 1994, |
| 1607 kInertAttribute = 1995, | 1607 kInertAttribute = 1995, |
| 1608 kPluginInstanceAccessFromIsolatedWorld = 1996, | 1608 kPluginInstanceAccessFromIsolatedWorld = 1996, |
| 1609 kPluginInstanceAccessFromMainWorld = 1997, | 1609 kPluginInstanceAccessFromMainWorld = 1997, |
| 1610 kHTMLOListElementReversedWithoutStart = 1998, | |
|
tkent
2017/05/24 23:41:55
kHTMLOListElementStartGetterReversedWithoutStartAt
Shanmuga Pandi
2017/05/25 06:04:31
Done.
| |
| 1610 | 1611 |
| 1611 // Add new features immediately above this line. Don't change assigned | 1612 // Add new features immediately above this line. Don't change assigned |
| 1612 // numbers of any item, and don't reuse removed slots. | 1613 // numbers of any item, and don't reuse removed slots. |
| 1613 // Also, run update_use_counter_feature_enum.py in | 1614 // Also, run update_use_counter_feature_enum.py in |
| 1614 // chromium/src/tools/metrics/histograms/ to update the UMA mapping. | 1615 // chromium/src/tools/metrics/histograms/ to update the UMA mapping. |
| 1615 kNumberOfFeatures, // This enum value must be last. | 1616 kNumberOfFeatures, // This enum value must be last. |
| 1616 }; | 1617 }; |
| 1617 | 1618 |
| 1618 // An interface to observe UseCounter changes. Note that this is never | 1619 // An interface to observe UseCounter changes. Note that this is never |
| 1619 // notified when the counter is disabled by |m_muteCount| or when |m_context| | 1620 // notified when the counter is disabled by |m_muteCount| or when |m_context| |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1717 // Tracks what features/properties need to be reported to the legacy | 1718 // Tracks what features/properties need to be reported to the legacy |
| 1718 // histograms. | 1719 // histograms. |
| 1719 BitVector feature_bits_; | 1720 BitVector feature_bits_; |
| 1720 BitVector css_bits_; | 1721 BitVector css_bits_; |
| 1721 } legacy_counter_; | 1722 } legacy_counter_; |
| 1722 }; | 1723 }; |
| 1723 | 1724 |
| 1724 } // namespace blink | 1725 } // namespace blink |
| 1725 | 1726 |
| 1726 #endif // UseCounter_h | 1727 #endif // UseCounter_h |
| OLD | NEW |