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

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

Issue 1455673002: Add UseCounter for border-image overriding border-widths (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix c&p error Created 5 years, 1 month 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 866 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 CSSFilterSepia = 1016, 877 CSSFilterSepia = 1016,
878 CSSFilterSaturate = 1017, 878 CSSFilterSaturate = 1017,
879 CSSFilterHueRotate = 1018, 879 CSSFilterHueRotate = 1018,
880 CSSFilterInvert = 1019, 880 CSSFilterInvert = 1019,
881 CSSFilterOpacity = 1020, 881 CSSFilterOpacity = 1020,
882 CSSFilterBrightness = 1021, 882 CSSFilterBrightness = 1021,
883 CSSFilterContrast = 1022, 883 CSSFilterContrast = 1022,
884 CSSFilterBlur = 1023, 884 CSSFilterBlur = 1023,
885 CSSFilterDropShadow = 1024, 885 CSSFilterDropShadow = 1024,
886 BackgroundSyncRegister = 1025, 886 BackgroundSyncRegister = 1025,
887 BorderImageWithBorderStyleNone = 1026,
887 888
888 // Add new features immediately above this line. Don't change assigned 889 // Add new features immediately above this line. Don't change assigned
889 // numbers of any item, and don't reuse removed slots. 890 // numbers of any item, and don't reuse removed slots.
890 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ 891 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/
891 // to update the UMA mapping. 892 // to update the UMA mapping.
892 NumberOfFeatures, // This enum value must be last. 893 NumberOfFeatures, // This enum value must be last.
893 }; 894 };
894 895
895 // "count" sets the bit for this feature to 1. Repeated calls are ignored. 896 // "count" sets the bit for this feature to 1. Repeated calls are ignored.
896 static void count(const Frame*, Feature); 897 static void count(const Frame*, Feature);
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
981 982
982 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } 983 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); }
983 984
984 CountBits m_countBits; 985 CountBits m_countBits;
985 BitVector m_CSSFeatureBits; 986 BitVector m_CSSFeatureBits;
986 }; 987 };
987 988
988 } // namespace blink 989 } // namespace blink
989 990
990 #endif // UseCounter_h 991 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698