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

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

Issue 1405413004: Implement suspend() and resume() for OfflineAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updating UseCounter.h after L-G-T-M Created 5 years 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 873 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 CSSFilterBrightness = 1021, 884 CSSFilterBrightness = 1021,
885 CSSFilterContrast = 1022, 885 CSSFilterContrast = 1022,
886 CSSFilterBlur = 1023, 886 CSSFilterBlur = 1023,
887 CSSFilterDropShadow = 1024, 887 CSSFilterDropShadow = 1024,
888 BackgroundSyncRegister = 1025, 888 BackgroundSyncRegister = 1025,
889 BorderImageWithBorderStyleNone = 1026, 889 BorderImageWithBorderStyleNone = 1026,
890 ExecCommandOnInputOrTextarea = 1027, 890 ExecCommandOnInputOrTextarea = 1027,
891 V8History_ScrollRestoration_AttributeGetter = 1028, 891 V8History_ScrollRestoration_AttributeGetter = 1028,
892 V8History_ScrollRestoration_AttributeSetter = 1029, 892 V8History_ScrollRestoration_AttributeSetter = 1029,
893 SVG1DOMFilter = 1030, 893 SVG1DOMFilter = 1030,
894 OfflineAudioContextStartRendering = 1031,
895 OfflineAudioContextSuspend = 1032,
896 OfflineAudioContextResume = 1033,
894 897
895 // Add new features immediately above this line. Don't change assigned 898 // Add new features immediately above this line. Don't change assigned
896 // numbers of any item, and don't reuse removed slots. 899 // numbers of any item, and don't reuse removed slots.
897 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/ 900 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me trics/histograms/
898 // to update the UMA mapping. 901 // to update the UMA mapping.
899 NumberOfFeatures, // This enum value must be last. 902 NumberOfFeatures, // This enum value must be last.
900 }; 903 };
901 904
902 // "count" sets the bit for this feature to 1. Repeated calls are ignored. 905 // "count" sets the bit for this feature to 1. Repeated calls are ignored.
903 static void count(const Frame*, Feature); 906 static void count(const Frame*, Feature);
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
988 991
989 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } 992 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); }
990 993
991 CountBits m_countBits; 994 CountBits m_countBits;
992 BitVector m_CSSFeatureBits; 995 BitVector m_CSSFeatureBits;
993 }; 996 };
994 997
995 } // namespace blink 998 } // namespace blink
996 999
997 #endif // UseCounter_h 1000 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698