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

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

Issue 966843002: Mark DOMStringList.contains() as deprecated, add console warning. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Deprecate named getter Created 5 years, 9 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
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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 WindowMoveResizeMissingArguments = 684, 622 WindowMoveResizeMissingArguments = 684,
623 SVGSVGElementForceRedraw = 685, 623 SVGSVGElementForceRedraw = 685,
624 SVGSVGElementSuspendRedraw = 686, 624 SVGSVGElementSuspendRedraw = 686,
625 SVGSVGElementUnsuspendRedraw = 687, 625 SVGSVGElementUnsuspendRedraw = 687,
626 SVGSVGElementUnsuspendRedrawAll = 688, 626 SVGSVGElementUnsuspendRedrawAll = 688,
627 AudioContextClose = 689, 627 AudioContextClose = 689,
628 ServiceWorkerClientPostMessage = 690, 628 ServiceWorkerClientPostMessage = 690,
629 CSSZoomNotEqualToOne = 691, 629 CSSZoomNotEqualToOne = 691,
630 SVGGraphicsElementGetTransformToElement = 692, 630 SVGGraphicsElementGetTransformToElement = 692,
631 ServiceWorkerClientsGetAll = 693, 631 ServiceWorkerClientsGetAll = 693,
632 DOMStringListItem = 694,
632 633
633 // Add new features immediately above this line. Don't change assigned 634 // Add new features immediately above this line. Don't change assigned
634 // numbers of any item, and don't reuse removed slots. 635 // numbers of any item, and don't reuse removed slots.
635 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ 636 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/
636 // to update the UMA mapping. 637 // to update the UMA mapping.
637 NumberOfFeatures, // This enum value must be last. 638 NumberOfFeatures, // This enum value must be last.
638 }; 639 };
639 640
640 // "count" sets the bit for this feature to 1. Repeated calls are ignored. 641 // "count" sets the bit for this feature to 1. Repeated calls are ignored.
641 static void count(const Frame*, Feature); 642 static void count(const Frame*, Feature);
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 bool recordMeasurement(Feature feature) { return m_countBits.recordMeasureme nt(feature); } 714 bool recordMeasurement(Feature feature) { return m_countBits.recordMeasureme nt(feature); }
714 void updateMeasurements(); 715 void updateMeasurements();
715 716
716 CountBits m_countBits; 717 CountBits m_countBits;
717 BitVector m_CSSFeatureBits; 718 BitVector m_CSSFeatureBits;
718 }; 719 };
719 720
720 } // namespace blink 721 } // namespace blink
721 722
722 #endif // UseCounter_h 723 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698