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

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

Issue 317983003: Add a UseCounter for SVGElement.xmlbase (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/svg/SVGElement.idl » ('j') | Source/core/svg/SVGElement.idl » ('J')
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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 TextEncoderEncode = 430, 430 TextEncoderEncode = 430,
431 TextDecoderConstructor = 431, 431 TextDecoderConstructor = 431,
432 TextDecoderDecode= 432, 432 TextDecoderDecode= 432,
433 FocusInOutEvent = 433, 433 FocusInOutEvent = 433,
434 MouseEventMovementX = 434, 434 MouseEventMovementX = 434,
435 MouseEventMovementY = 435, 435 MouseEventMovementY = 435,
436 MixedContentTextTrack = 436, 436 MixedContentTextTrack = 436,
437 MixedContentRaw = 437, 437 MixedContentRaw = 437,
438 MixedContentImage = 438, 438 MixedContentImage = 438,
439 MixedContentMedia = 439, 439 MixedContentMedia = 439,
440 SVGElementXmlbase = 440,
440 441
441 // Add new features immediately above this line. Don't change assigned 442 // Add new features immediately above this line. Don't change assigned
442 // numbers of any item, and don't reuse removed slots. 443 // numbers of any item, and don't reuse removed slots.
443 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ 444 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/
444 // to update the UMA mapping. 445 // to update the UMA mapping.
445 NumberOfFeatures, // This enum value must be last. 446 NumberOfFeatures, // This enum value must be last.
446 }; 447 };
447 448
448 // "count" sets the bit for this feature to 1. Repeated calls are ignored. 449 // "count" sets the bit for this feature to 1. Repeated calls are ignored.
449 static void count(const Document&, Feature); 450 static void count(const Document&, Feature);
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 497
497 void updateMeasurements(); 498 void updateMeasurements();
498 499
499 OwnPtr<BitVector> m_countBits; 500 OwnPtr<BitVector> m_countBits;
500 BitVector m_CSSFeatureBits; 501 BitVector m_CSSFeatureBits;
501 }; 502 };
502 503
503 } // namespace WebCore 504 } // namespace WebCore
504 505
505 #endif // UseCounter_h 506 #endif // UseCounter_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/svg/SVGElement.idl » ('j') | Source/core/svg/SVGElement.idl » ('J')

Powered by Google App Engine
This is Rietveld 408576698