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

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

Issue 944583003: Deprecate Clients.getAll and introduce Clients.matchAll (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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 | Source/core/frame/UseCounter.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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 SVGElementXmlspace = 683, 623 SVGElementXmlspace = 683,
624 WindowMoveResizeMissingArguments = 684, 624 WindowMoveResizeMissingArguments = 684,
625 SVGSVGElementForceRedraw = 685, 625 SVGSVGElementForceRedraw = 685,
626 SVGSVGElementSuspendRedraw = 686, 626 SVGSVGElementSuspendRedraw = 686,
627 SVGSVGElementUnsuspendRedraw = 687, 627 SVGSVGElementUnsuspendRedraw = 687,
628 SVGSVGElementUnsuspendRedrawAll = 688, 628 SVGSVGElementUnsuspendRedrawAll = 688,
629 AudioContextClose = 689, 629 AudioContextClose = 689,
630 ServiceWorkerClientPostMessage = 690, 630 ServiceWorkerClientPostMessage = 690,
631 CSSZoomNotEqualToOne = 691, 631 CSSZoomNotEqualToOne = 691,
632 SVGGraphicsElementGetTransformToElement = 692, 632 SVGGraphicsElementGetTransformToElement = 692,
633 ServiceWorkerClientsGetAll = 693,
633 634
634 // Add new features immediately above this line. Don't change assigned 635 // Add new features immediately above this line. Don't change assigned
635 // numbers of any item, and don't reuse removed slots. 636 // numbers of any item, and don't reuse removed slots.
636 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ 637 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/
637 // to update the UMA mapping. 638 // to update the UMA mapping.
638 NumberOfFeatures, // This enum value must be last. 639 NumberOfFeatures, // This enum value must be last.
639 }; 640 };
640 641
641 // "count" sets the bit for this feature to 1. Repeated calls are ignored. 642 // "count" sets the bit for this feature to 1. Repeated calls are ignored.
642 static void count(const Frame*, Feature); 643 static void count(const Frame*, Feature);
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 bool recordMeasurement(Feature feature) { return m_countBits.recordMeasureme nt(feature); } 715 bool recordMeasurement(Feature feature) { return m_countBits.recordMeasureme nt(feature); }
715 void updateMeasurements(); 716 void updateMeasurements();
716 717
717 CountBits m_countBits; 718 CountBits m_countBits;
718 BitVector m_CSSFeatureBits; 719 BitVector m_CSSFeatureBits;
719 }; 720 };
720 721
721 } // namespace blink 722 } // namespace blink
722 723
723 #endif // UseCounter_h 724 #endif // UseCounter_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/frame/UseCounter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698