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

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

Powered by Google App Engine
This is Rietveld 408576698