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

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

Issue 2902723006: Measure the usage of <ol>.start with |reversed| and no |start| attribute. (Closed)
Patch Set: Created 3 years, 6 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 | third_party/WebKit/Source/core/html/HTMLOListElement.h » ('j') | 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 1589 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLOListElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698