1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
|
/*
* Copyright (C) 2012 Google, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY GOOGLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef UseCounter_h
#define UseCounter_h
#include "core/CSSPropertyNames.h"
#include "wtf/BitVector.h"
#include "wtf/Noncopyable.h"
#include "wtf/OwnPtr.h"
#include "wtf/PassOwnPtr.h"
#include "wtf/text/WTFString.h"
namespace WebCore {
class CSSStyleSheet;
class LocalDOMWindow;
class Document;
class ExecutionContext;
class StyleSheetContents;
// UseCounter is used for counting the number of times features of
// Blink are used on real web pages and help us know commonly
// features are used and thus when it's safe to remove or change them.
//
// The Chromium Content layer controls what is done with this data.
// For instance, in Google Chrome, these counts are submitted
// anonymously through the Histogram recording system in Chrome
// for users who opt-in to "Usage Statistics" submission
// during their install of Google Chrome:
// http://www.google.com/chrome/intl/en/privacy.html
class UseCounter {
WTF_MAKE_NONCOPYABLE(UseCounter);
public:
UseCounter();
~UseCounter();
enum Feature {
// Do not change assigned numbers of existing items: add new features
// to the end of the list.
PageDestruction = 0,
PrefixedIndexedDB = 3,
WorkerStart = 4,
SharedWorkerStart = 5,
UnprefixedIndexedDB = 9,
OpenWebDatabase = 10,
UnprefixedRequestAnimationFrame = 13,
PrefixedRequestAnimationFrame = 14,
ContentSecurityPolicy = 15,
ContentSecurityPolicyReportOnly = 16,
PrefixedTransitionEndEvent = 18,
UnprefixedTransitionEndEvent = 19,
PrefixedAndUnprefixedTransitionEndEvent = 20,
AutoFocusAttribute = 21,
DataListElement = 23,
FormAttribute = 24,
IncrementalAttribute = 25,
InputTypeColor = 26,
InputTypeDate = 27,
InputTypeDateTimeFallback = 29,
InputTypeDateTimeLocal = 30,
InputTypeEmail = 31,
InputTypeMonth = 32,
InputTypeNumber = 33,
InputTypeRange = 34,
InputTypeSearch = 35,
InputTypeTel = 36,
InputTypeTime = 37,
InputTypeURL = 38,
InputTypeWeek = 39,
InputTypeWeekFallback = 40,
ListAttribute = 41,
MaxAttribute = 42,
MinAttribute = 43,
PatternAttribute = 44,
PlaceholderAttribute = 45,
PrefixedDirectoryAttribute = 47,
RequiredAttribute = 49,
ResultsAttribute = 50,
StepAttribute = 51,
PageVisits = 52,
HTMLMarqueeElement = 53,
Reflection = 55,
PrefixedStorageInfo = 57,
XFrameOptions = 58,
XFrameOptionsSameOrigin = 59,
XFrameOptionsSameOriginWithBadAncestorChain = 60,
DeprecatedFlexboxWebContent = 61,
DeprecatedFlexboxChrome = 62,
DeprecatedFlexboxChromeExtension = 63,
UnprefixedPerformanceTimeline = 65,
UnprefixedUserTiming = 67,
WindowEvent = 69,
ContentSecurityPolicyWithBaseElement = 70,
PrefixedMediaAddKey = 71,
PrefixedMediaGenerateKeyRequest = 72,
DocumentClear = 74,
SVGFontElement = 76,
XMLDocument = 77,
XSLProcessingInstruction = 78,
XSLTProcessor = 79,
SVGSwitchElement = 80,
DocumentAll = 83,
FormElement = 84,
DemotedFormElement = 85,
SVGAnimationElement = 90,
KeyboardEventKeyLocation = 91,
LineClamp = 96,
SubFrameBeforeUnloadRegistered = 97,
SubFrameBeforeUnloadFired = 98,
TextReplaceWholeText = 100,
ConsoleMarkTimeline = 102,
CSSPseudoElementUserAgentCustomPseudo = 103,
ElementGetAttributeNode = 107, // Removed from DOM4.
ElementSetAttributeNode = 108, // Removed from DOM4.
ElementRemoveAttributeNode = 109, // Removed from DOM4.
ElementGetAttributeNodeNS = 110, // Removed from DOM4.
DocumentCreateAttribute = 111, // Removed from DOM4.
DocumentCreateAttributeNS = 112, // Removed from DOM4.
DocumentCreateCDATASection = 113, // Removed from DOM4.
DocumentInputEncoding = 114, // Removed from DOM4.
DocumentXMLEncoding = 115, // Removed from DOM4.
DocumentXMLStandalone = 116, // Removed from DOM4.
DocumentXMLVersion = 117, // Removed from DOM4.
NodeIsSameNode = 118, // Removed from DOM4.
NodeNamespaceURI = 120, // Removed from DOM4.
NodeLocalName = 122, // Removed from DOM4.
NavigatorProductSub = 123,
NavigatorVendor = 124,
NavigatorVendorSub = 125,
FileError = 126,
DocumentCharset = 127, // Documented as IE extensions = 0, from KHTML days.
PrefixedAnimationEndEvent = 128,
UnprefixedAnimationEndEvent = 129,
PrefixedAndUnprefixedAnimationEndEvent = 130,
PrefixedAnimationStartEvent = 131,
UnprefixedAnimationStartEvent = 132,
PrefixedAndUnprefixedAnimationStartEvent = 133,
PrefixedAnimationIterationEvent = 134,
UnprefixedAnimationIterationEvent = 135,
PrefixedAndUnprefixedAnimationIterationEvent = 136,
EventReturnValue = 137, // Legacy IE extension.
SVGSVGElement = 138,
InsertAdjacentText = 140,
InsertAdjacentElement = 141,
HasAttributes = 142, // Removed from DOM4.
DOMSubtreeModifiedEvent = 143,
DOMNodeInsertedEvent = 144,
DOMNodeRemovedEvent = 145,
DOMNodeRemovedFromDocumentEvent = 146,
DOMNodeInsertedIntoDocumentEvent = 147,
DOMCharacterDataModifiedEvent = 148,
DocumentAllLegacyCall = 150,
HTMLAppletElementLegacyCall = 151,
HTMLEmbedElementLegacyCall = 152,
HTMLObjectElementLegacyCall = 153,
GetMatchedCSSRules = 155,
SVGFontInCSS = 156,
AttributeOwnerElement = 160, // Removed in DOM4.
AttributeSpecified = 162, // Removed in DOM4.
PrefixedAudioDecodedByteCount = 164,
PrefixedVideoDecodedByteCount = 165,
PrefixedVideoSupportsFullscreen = 166,
PrefixedVideoDisplayingFullscreen = 167,
PrefixedVideoEnterFullscreen = 168,
PrefixedVideoExitFullscreen = 169,
PrefixedVideoEnterFullScreen = 170,
PrefixedVideoExitFullScreen = 171,
PrefixedVideoDecodedFrameCount = 172,
PrefixedVideoDroppedFrameCount = 173,
PrefixedElementRequestFullscreen = 176,
PrefixedElementRequestFullScreen = 177,
BarPropLocationbar = 178,
BarPropMenubar = 179,
BarPropPersonalbar = 180,
BarPropScrollbars = 181,
BarPropStatusbar = 182,
BarPropToolbar = 183,
InputTypeEmailMultiple = 184,
InputTypeEmailMaxLength = 185,
InputTypeEmailMultipleMaxLength = 186,
InputTypeText = 190,
InputTypeTextMaxLength = 191,
InputTypePassword = 192,
InputTypePasswordMaxLength = 193,
SVGInstanceRoot = 194,
ShowModalDialog = 195,
PrefixedPageVisibility = 196,
CSSStyleSheetInsertRuleOptionalArg = 198, // Inconsistent with the specification and other browsers.
DocumentBeforeUnloadRegistered = 200,
DocumentBeforeUnloadFired = 201,
DocumentUnloadRegistered = 202,
DocumentUnloadFired = 203,
SVGLocatableNearestViewportElement = 204,
SVGLocatableFarthestViewportElement = 205,
HTMLHeadElementProfile = 207,
OverflowChangedEvent = 208,
SVGPointMatrixTransform = 209,
DOMFocusInOutEvent = 211,
FileGetLastModifiedDate = 212,
HTMLElementInnerText = 213,
HTMLElementOuterText = 214,
ReplaceDocumentViaJavaScriptURL = 215,
ElementSetAttributeNodeNS = 216, // Removed from DOM4.
ElementPrefixedMatchesSelector = 217,
CSSStyleSheetRules = 219,
CSSStyleSheetAddRule = 220,
CSSStyleSheetRemoveRule = 221,
// The above items are available in M33 branch.
InitMessageEvent = 222,
ElementSetPrefix = 224, // Element.prefix is readonly in DOM4.
CSSStyleDeclarationGetPropertyCSSValue = 225,
PrefixedMediaCancelKeyRequest = 229,
DOMImplementationHasFeature = 230,
DOMImplementationHasFeatureReturnFalse = 231,
CanPlayTypeKeySystem = 232,
PrefixedDevicePixelRatioMediaFeature = 233,
PrefixedMaxDevicePixelRatioMediaFeature = 234,
PrefixedMinDevicePixelRatioMediaFeature = 235,
PrefixedTransform3dMediaFeature = 237,
PrefixedStorageQuota = 240,
ContentSecurityPolicyReportOnlyInMeta = 241,
ResetReferrerPolicy = 243,
CaseInsensitiveAttrSelectorMatch = 244, // Case-insensitivity dropped from specification.
FormNameAccessForImageElement = 246,
FormNameAccessForPastNamesMap = 247,
FormAssociationByParser = 248,
SVGSVGElementInDocument = 250,
SVGDocumentRootElement = 251,
MediaErrorEncrypted = 253,
EventSourceURL = 254,
WebSocketURL = 255,
WorkerSubjectToCSP = 257,
WorkerAllowedByChildBlockedByScript = 258,
DeprecatedWebKitGradient = 260,
DeprecatedWebKitLinearGradient = 261,
DeprecatedWebKitRepeatingLinearGradient = 262,
DeprecatedWebKitRadialGradient = 263,
DeprecatedWebKitRepeatingRadialGradient = 264,
PrefixedImageSmoothingEnabled = 267,
UnprefixedImageSmoothingEnabled = 268,
PromiseConstructor = 270,
PromiseCast = 271,
PromiseReject = 272,
PromiseResolve = 273,
// The above items are available in M34 branch.
TextAutosizing = 274,
TextAutosizingLayout = 275,
HTMLAnchorElementPingAttribute = 276,
InsertAdjacentHTML = 278,
SVGClassName = 279,
HTMLAppletElement = 280,
HTMLMediaElementSeekToFragmentStart = 281,
HTMLMediaElementPauseAtFragmentEnd = 282,
PrefixedWindowURL = 283,
PrefixedWorkerURL = 284, // This didn't work because of crbug.com/376039. Available since M37.
WindowOrientation = 285,
DOMStringListContains = 286,
DocumentCaptureEvents = 287,
DocumentReleaseEvents = 288,
WindowCaptureEvents = 289,
WindowReleaseEvents = 290,
PrefixedGamepad = 291,
ElementAnimateKeyframeListEffectObjectTiming = 292,
ElementAnimateKeyframeListEffectDoubleTiming = 293,
ElementAnimateKeyframeListEffectNoTiming = 294,
DocumentXPathCreateExpression = 295,
DocumentXPathCreateNSResolver = 296,
DocumentXPathEvaluate = 297,
AttrGetValue = 298,
AttrSetValue = 299,
AnimationConstructorKeyframeListEffectObjectTiming = 300,
AnimationConstructorKeyframeListEffectDoubleTiming = 301,
AnimationConstructorKeyframeListEffectNoTiming = 302,
AttrSetValueWithElement = 303,
PrefixedCancelAnimationFrame = 304,
PrefixedCancelRequestAnimationFrame = 305,
NamedNodeMapGetNamedItem = 306,
NamedNodeMapSetNamedItem = 307,
NamedNodeMapRemoveNamedItem = 308,
NamedNodeMapItem = 309,
NamedNodeMapGetNamedItemNS = 310,
NamedNodeMapSetNamedItemNS = 311,
NamedNodeMapRemoveNamedItemNS = 312,
OpenWebDatabaseInWorker = 313, // This didn't work because of crbug.com/376039. Available since M37.
OpenWebDatabaseSyncInWorker = 314, // This didn't work because of crbug.com/376039. Available since M37.
PrefixedAllowFullscreenAttribute = 315,
XHRProgressEventPosition = 316,
XHRProgressEventTotalSize = 317,
PrefixedDocumentIsFullscreen = 318,
PrefixedDocumentFullScreenKeyboardInputAllowed = 319,
PrefixedDocumentCurrentFullScreenElement = 320,
PrefixedDocumentCancelFullScreen = 321,
PrefixedDocumentFullscreenEnabled = 322,
PrefixedDocumentFullscreenElement = 323,
PrefixedDocumentExitFullscreen = 324,
// The above items are available in M35 branch.
SVGForeignObjectElement = 325,
PrefixedElementRequestPointerLock = 326,
SelectionSetPosition = 327,
AnimationPlayerFinishEvent = 328,
SVGSVGElementInXMLDocument = 329,
CanvasRenderingContext2DSetAlpha = 330,
CanvasRenderingContext2DSetCompositeOperation = 331,
CanvasRenderingContext2DSetLineWidth = 332,
CanvasRenderingContext2DSetLineCap = 333,
CanvasRenderingContext2DSetLineJoin = 334,
CanvasRenderingContext2DSetMiterLimit = 335,
CanvasRenderingContext2DClearShadow = 336,
CanvasRenderingContext2DSetStrokeColor = 337,
CanvasRenderingContext2DSetFillColor = 338,
CanvasRenderingContext2DDrawImageFromRect = 339,
CanvasRenderingContext2DSetShadow = 340,
PrefixedPerformanceClearResourceTimings = 341,
PrefixedPerformanceSetResourceTimingBufferSize = 342,
EventSrcElement = 343,
EventCancelBubble = 344,
EventPath = 345,
EventClipboardData = 346,
NodeIteratorDetach = 347,
AttrNodeValue = 348,
AttrTextContent = 349,
EventGetReturnValueTrue = 350,
EventGetReturnValueFalse = 351,
EventSetReturnValueTrue = 352,
EventSetReturnValueFalse = 353,
NodeIteratorExpandEntityReferences = 354,
TreeWalkerExpandEntityReferences = 355,
WindowOffscreenBuffering = 356,
WindowDefaultStatus = 357,
WindowDefaultstatus = 358,
PrefixedConvertPointFromPageToNode = 359,
PrefixedConvertPointFromNodeToPage = 360,
PrefixedTransitionEventConstructor = 361,
PrefixedMutationObserverConstructor = 362,
PrefixedIDBCursorConstructor = 363,
PrefixedIDBDatabaseConstructor = 364,
PrefixedIDBFactoryConstructor = 365,
PrefixedIDBIndexConstructor = 366,
PrefixedIDBKeyRangeConstructor = 367,
PrefixedIDBObjectStoreConstructor = 368,
PrefixedIDBRequestConstructor = 369,
PrefixedIDBTransactionConstructor = 370,
NotificationPermission = 371,
RangeDetach = 372,
DocumentImportNodeOptionalArgument = 373,
HTMLTableElementVspace = 374,
HTMLTableElementHspace = 375,
PrefixedDocumentExitPointerLock = 376,
PrefixedDocumentPointerLockElement = 377,
PrefixedTouchRadiusX = 378,
PrefixedTouchRadiusY = 379,
PrefixedTouchRotationAngle = 380,
PrefixedTouchForce = 381,
PrefixedMouseEventMovementX = 382,
PrefixedMouseEventMovementY = 383,
PrefixedWheelEventDirectionInvertedFromDevice = 384,
PrefixedWheelEventInit = 385,
PrefixedFileRelativePath = 386,
DocumentCaretRangeFromPoint = 387,
DocumentGetCSSCanvasContext = 388,
ElementScrollIntoViewIfNeeded = 389,
ElementScrollByLines = 390,
ElementScrollByPages = 391,
RangeCompareNode = 392,
RangeExpand = 393,
HTMLFrameElementWidth = 394,
HTMLFrameElementHeight = 395,
HTMLImageElementX = 396,
HTMLImageElementY = 397,
HTMLOptionsCollectionRemoveElement = 398,
HTMLPreElementWrap = 399,
SelectionBaseNode = 400,
SelectionBaseOffset = 401,
SelectionExtentNode = 402,
SelectionExtentOffset = 403,
SelectionType = 404,
SelectionModify = 405,
SelectionSetBaseAndExtent = 406,
SelectionEmpty = 407,
SVGFEMorphologyElementSetRadius = 408,
VTTCue = 409,
VTTCueRender = 410,
VTTCueRenderVertical = 411,
VTTCueRenderSnapToLinesFalse = 412,
VTTCueRenderLineNotAuto = 413,
VTTCueRenderPositionNot50 = 414,
VTTCueRenderSizeNot100 = 415,
VTTCueRenderAlignNotMiddle = 416,
// The above items are available in M36 branch.
ElementRequestPointerLock = 417,
VTTCueRenderRtl = 418,
PostMessageFromSecureToInsecure = 419,
PostMessageFromInsecureToSecure = 420,
DocumentExitPointerLock = 421,
DocumentPointerLockElement = 422,
PrefixedCursorZoomIn = 424,
PrefixedCursorZoomOut = 425,
CSSCharsetRuleEncoding = 426,
DocumentSetCharset = 427,
DocumentDefaultCharset = 428,
TextEncoderConstructor = 429,
TextEncoderEncode = 430,
TextDecoderConstructor = 431,
TextDecoderDecode= 432,
FocusInOutEvent = 433,
MouseEventMovementX = 434,
MouseEventMovementY = 435,
MixedContentTextTrack = 436,
MixedContentRaw = 437,
MixedContentImage = 438,
MixedContentMedia = 439,
DocumentFonts = 440,
MixedContentFormsSubmitted = 441,
FormsSubmitted = 442,
TextInputEventOnInput = 443,
TextInputEventOnTextArea = 444,
TextInputEventOnContentEditable= 445,
TextInputEventOnNotNode = 446,
WebkitBeforeTextInsertedOnInput = 447,
WebkitBeforeTextInsertedOnTextArea = 448,
WebkitBeforeTextInsertedOnContentEditable = 449,
WebkitBeforeTextInsertedOnNotNode = 450,
WebkitEditableContentChangedOnInput = 451,
WebkitEditableContentChangedOnTextArea = 452,
WebkitEditableContentChangedOnContentEditable = 453,
WebkitEditableContentChangedOnNotNode = 454,
HTMLImports = 455,
ElementCreateShadowRoot = 456,
DocumentRegisterElement = 457,
EditingAppleInterchangeNewline = 458,
EditingAppleConvertedSpace = 459,
EditingApplePasteAsQuotation = 460,
EditingAppleStyleSpanClass = 461,
EditingAppleTabSpanClass = 462,
HTMLImportsAsyncAttribute = 463,
FontFaceSetReady = 464,
XMLHttpRequestSynchronous = 465,
CSSSelectorPseudoUnresolved = 466,
CSSSelectorPseudoShadow = 467,
CSSSelectorPseudoContent = 468,
CSSSelectorPseudoHost = 469,
CSSSelectorPseudoHostContext = 470,
CSSDeepCombinator = 471,
SyncXHRWithCredentials = 472,
// Add new features immediately above this line. Don't change assigned
// numbers of any item, and don't reuse removed slots.
// Also, run update_use_counter_feature_enum.py in chromium/src/tools/metrics/histograms/
// to update the UMA mapping.
NumberOfFeatures, // This enum value must be last.
};
// "count" sets the bit for this feature to 1. Repeated calls are ignored.
static void count(const Document&, Feature);
// This doesn't count for ExecutionContexts for shared workers and service
// workers.
static void count(const ExecutionContext*, Feature);
void count(CSSParserContext, CSSPropertyID);
void count(Feature);
// "countDeprecation" sets the bit for this feature to 1, and sends a deprecation
// warning to the console. Repeated calls are ignored.
//
// Be considerate to developers' consoles: features should only send
// deprecation warnings when we're actively interested in removing them from
// the platform.
//
// The ExecutionContext* overload doesn't work for shared workers and
// service workers.
static void countDeprecation(const LocalDOMWindow*, Feature);
static void countDeprecation(ExecutionContext*, Feature);
static void countDeprecation(const Document&, Feature);
String deprecationMessage(Feature);
void didCommitLoad();
static UseCounter* getFrom(const Document*);
static UseCounter* getFrom(const CSSStyleSheet*);
static UseCounter* getFrom(const StyleSheetContents*);
static int mapCSSPropertyIdToCSSSampleIdForHistogram(int id);
static void muteForInspector();
static void unmuteForInspector();
private:
static int m_muteCount;
bool recordMeasurement(Feature feature)
{
if (UseCounter::m_muteCount)
return false;
ASSERT(feature != PageDestruction); // PageDestruction is reserved as a scaling factor.
ASSERT(feature < NumberOfFeatures);
if (!m_countBits) {
m_countBits = adoptPtr(new BitVector(NumberOfFeatures));
m_countBits->clearAll();
}
if (m_countBits->quickGet(feature))
return false;
m_countBits->quickSet(feature);
return true;
}
void updateMeasurements();
OwnPtr<BitVector> m_countBits;
BitVector m_CSSFeatureBits;
};
} // namespace WebCore
#endif // UseCounter_h
|