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

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

Issue 1956293002: Count usage of PROGRESS element with -webkit-appearance:none. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLProgressElement.cpp » ('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 1142 matching lines...) Expand 10 before | Expand all | Expand 10 after
1153 During_Microtask_Confirm = 1335, 1153 During_Microtask_Confirm = 1335,
1154 During_Microtask_Print = 1336, 1154 During_Microtask_Print = 1336,
1155 During_Microtask_Prompt = 1337, 1155 During_Microtask_Prompt = 1337,
1156 During_Microtask_SyncXHR = 1338, 1156 During_Microtask_SyncXHR = 1338,
1157 URLMethodCreateObjectURLServiceWorker = 1339, 1157 URLMethodCreateObjectURLServiceWorker = 1339,
1158 URLMethodRevokeObjectURLServiceWorker = 1340, 1158 URLMethodRevokeObjectURLServiceWorker = 1340,
1159 DocumentCreateEventPaymentRequestUpdateEvent = 1341, 1159 DocumentCreateEventPaymentRequestUpdateEvent = 1341,
1160 CredentialManagerGetReturnedCredential = 1342, 1160 CredentialManagerGetReturnedCredential = 1342,
1161 GeolocationInsecureOriginDeprecatedNotRemoved = 1343, 1161 GeolocationInsecureOriginDeprecatedNotRemoved = 1343,
1162 GeolocationInsecureOriginIframeDeprecatedNotRemoved = 1344, 1162 GeolocationInsecureOriginIframeDeprecatedNotRemoved = 1344,
1163 ProgressElementWithNoneAppearance = 1345,
1164 ProgressElementWithProgressBarAppearance = 1346,
1163 1165
1164 // Add new features immediately above this line. Don't change assigned 1166 // Add new features immediately above this line. Don't change assigned
1165 // numbers of any item, and don't reuse removed slots. 1167 // numbers of any item, and don't reuse removed slots.
1166 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ 1168 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/
1167 // to update the UMA mapping. 1169 // to update the UMA mapping.
1168 NumberOfFeatures, // This enum value must be last. 1170 NumberOfFeatures, // This enum value must be last.
1169 }; 1171 };
1170 1172
1171 // "count" sets the bit for this feature to 1. Repeated calls are ignored. 1173 // "count" sets the bit for this feature to 1. Repeated calls are ignored.
1172 static void count(const Frame*, Feature); 1174 static void count(const Frame*, Feature);
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
1247 friend class UseCounterTest; 1249 friend class UseCounterTest;
1248 static int m_muteCount; 1250 static int m_muteCount;
1249 1251
1250 CountBits m_countBits; 1252 CountBits m_countBits;
1251 BitVector m_CSSFeatureBits; 1253 BitVector m_CSSFeatureBits;
1252 }; 1254 };
1253 1255
1254 } // namespace blink 1256 } // namespace blink
1255 1257
1256 #endif // UseCounter_h 1258 #endif // UseCounter_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLProgressElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698