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

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

Issue 2898133002: CSS: Use count unitless 0 supplied as <angle> (Closed)
Patch Set: Optional Created 3 years, 7 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
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 1595 matching lines...) Expand 10 before | Expand all | Expand 10 after
1606 kPluginInstanceAccessFromIsolatedWorld = 1996, 1606 kPluginInstanceAccessFromIsolatedWorld = 1996,
1607 kPluginInstanceAccessFromMainWorld = 1997, 1607 kPluginInstanceAccessFromMainWorld = 1997,
1608 kRequestFullscreenForDialogElement = 1998, 1608 kRequestFullscreenForDialogElement = 1998,
1609 kRequestFullscreenForDialogElementInTopLayer = 1999, 1609 kRequestFullscreenForDialogElementInTopLayer = 1999,
1610 kShowModalForElementInFullscreenStack = 2000, 1610 kShowModalForElementInFullscreenStack = 2000,
1611 kThreeValuedPositionBackground = 2001, 1611 kThreeValuedPositionBackground = 2001,
1612 kThreeValuedPositionBasicShape = 2002, 1612 kThreeValuedPositionBasicShape = 2002,
1613 kThreeValuedPositionGradient = 2003, 1613 kThreeValuedPositionGradient = 2003,
1614 kThreeValuedPositionObjectPosition = 2004, 1614 kThreeValuedPositionObjectPosition = 2004,
1615 kThreeValuedPositionPerspectiveOrigin = 2005, 1615 kThreeValuedPositionPerspectiveOrigin = 2005,
1616 kZeroAngleCustomProperty = 2006,
1617 kZeroAngleFilter = 2007,
1618 kZeroAngleGradient = 2008,
1619 kZeroAngleOffsetRotate = 2009,
1620 kZeroAngleTransform = 2010,
alancutter (OOO until 2018) 2017/05/25 01:53:16 Prepend these with "Unitless".
Eric Willigers 2017/05/25 02:56:41 Done.
1616 1621
1617 // Add new features immediately above this line. Don't change assigned 1622 // Add new features immediately above this line. Don't change assigned
1618 // numbers of any item, and don't reuse removed slots. 1623 // numbers of any item, and don't reuse removed slots.
1619 // Also, run update_use_counter_feature_enum.py in 1624 // Also, run update_use_counter_feature_enum.py in
1620 // chromium/src/tools/metrics/histograms/ to update the UMA mapping. 1625 // chromium/src/tools/metrics/histograms/ to update the UMA mapping.
1621 kNumberOfFeatures, // This enum value must be last. 1626 kNumberOfFeatures, // This enum value must be last.
1622 }; 1627 };
1623 1628
1624 // An interface to observe UseCounter changes. Note that this is never 1629 // An interface to observe UseCounter changes. Note that this is never
1625 // notified when the counter is disabled by |m_muteCount| or when |m_context| 1630 // 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
1723 // Tracks what features/properties need to be reported to the legacy 1728 // Tracks what features/properties need to be reported to the legacy
1724 // histograms. 1729 // histograms.
1725 BitVector feature_bits_; 1730 BitVector feature_bits_;
1726 BitVector css_bits_; 1731 BitVector css_bits_;
1727 } legacy_counter_; 1732 } legacy_counter_;
1728 }; 1733 };
1729 1734
1730 } // namespace blink 1735 } // namespace blink
1731 1736
1732 #endif // UseCounter_h 1737 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698