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

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

Issue 901623002: Deprecate SVGSVGElement.forceRedraw, suspendRedraw, unsuspendRedraw[All] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase 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
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 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 Fetch = 675, 617 Fetch = 675,
618 FetchBodyStream = 676, 618 FetchBodyStream = 676,
619 XMLHttpRequestAsynchronous = 677, 619 XMLHttpRequestAsynchronous = 677,
620 AudioBufferSourceBufferOnce = 678, 620 AudioBufferSourceBufferOnce = 678,
621 WhiteSpacePreFromXMLSpace = 679, 621 WhiteSpacePreFromXMLSpace = 679,
622 WhiteSpaceNowrapFromXMLSpace = 680, 622 WhiteSpaceNowrapFromXMLSpace = 680,
623 SVGElementXmlbase = 681, 623 SVGElementXmlbase = 681,
624 SVGElementXmllang = 682, 624 SVGElementXmllang = 682,
625 SVGElementXmlspace = 683, 625 SVGElementXmlspace = 683,
626 WindowMoveResizeMissingArguments = 684, 626 WindowMoveResizeMissingArguments = 684,
627 SVGSVGElementForceRedraw = 685,
628 SVGSVGElementSuspendRedraw = 686,
629 SVGSVGElementUnsuspendRedraw = 687,
630 SVGSVGElementUnsuspendRedrawAll = 688,
627 631
628 // Add new features immediately above this line. Don't change assigned 632 // Add new features immediately above this line. Don't change assigned
629 // numbers of any item, and don't reuse removed slots. 633 // numbers of any item, and don't reuse removed slots.
630 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ 634 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/
631 // to update the UMA mapping. 635 // to update the UMA mapping.
632 NumberOfFeatures, // This enum value must be last. 636 NumberOfFeatures, // This enum value must be last.
633 }; 637 };
634 638
635 // "count" sets the bit for this feature to 1. Repeated calls are ignored. 639 // "count" sets the bit for this feature to 1. Repeated calls are ignored.
636 static void count(const Frame*, Feature); 640 static void count(const Frame*, Feature);
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
700 704
701 void updateMeasurements(); 705 void updateMeasurements();
702 706
703 OwnPtr<BitVector> m_countBits; 707 OwnPtr<BitVector> m_countBits;
704 BitVector m_CSSFeatureBits; 708 BitVector m_CSSFeatureBits;
705 }; 709 };
706 710
707 } // namespace blink 711 } // namespace blink
708 712
709 #endif // UseCounter_h 713 #endif // UseCounter_h
OLDNEW
« no previous file with comments | « LayoutTests/svg/dom/SVGSVGElement-deprecated-methods-expected.txt ('k') | Source/core/frame/UseCounter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698