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

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

Issue 2356223002: Remove WebAudio doppler effect API surface (already no-ops) (Closed)
Patch Set: rebase Created 4 years, 2 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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 MixedContentPresent = 609, 478 MixedContentPresent = 609,
479 MixedContentBlockable = 610, 479 MixedContentBlockable = 610,
480 MixedContentAudio = 611, 480 MixedContentAudio = 611,
481 MixedContentDownload = 612, 481 MixedContentDownload = 612,
482 MixedContentFavicon = 613, 482 MixedContentFavicon = 613,
483 MixedContentImage = 614, 483 MixedContentImage = 614,
484 MixedContentInternal = 615, 484 MixedContentInternal = 615,
485 MixedContentPlugin = 616, 485 MixedContentPlugin = 616,
486 MixedContentPrefetch = 617, 486 MixedContentPrefetch = 617,
487 MixedContentVideo = 618, 487 MixedContentVideo = 618,
488 AudioListenerDopplerFactor = 620,
Raymond Toy 2016/09/26 21:40:13 Does this mean we can't look at historical data an
foolip 2016/09/26 21:58:44 No, it's still in histograms.xml and will keep its
489 AudioListenerSpeedOfSound = 621,
490 AudioListenerSetVelocity = 622,
491 CSSSelectorPseudoFullScreenAncestor = 628, 488 CSSSelectorPseudoFullScreenAncestor = 628,
492 CSSSelectorPseudoFullScreen = 629, 489 CSSSelectorPseudoFullScreen = 629,
493 WebKitCSSMatrix = 630, 490 WebKitCSSMatrix = 630,
494 AudioContextCreateAnalyser = 631, 491 AudioContextCreateAnalyser = 631,
495 AudioContextCreateBiquadFilter = 632, 492 AudioContextCreateBiquadFilter = 632,
496 AudioContextCreateBufferSource = 633, 493 AudioContextCreateBufferSource = 633,
497 AudioContextCreateChannelMerger = 634, 494 AudioContextCreateChannelMerger = 634,
498 AudioContextCreateChannelSplitter = 635, 495 AudioContextCreateChannelSplitter = 635,
499 AudioContextCreateConvolver = 636, 496 AudioContextCreateConvolver = 636,
500 AudioContextCreateDelay = 637, 497 AudioContextCreateDelay = 637,
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 WebAnimationHyphenatedProperty = 1243, 989 WebAnimationHyphenatedProperty = 1243,
993 FormControlsCollectionReturnsRadioNodeListForFieldSet = 1244, 990 FormControlsCollectionReturnsRadioNodeListForFieldSet = 1244,
994 ApplicationCacheManifestSelectInsecureOrigin = 1245, 991 ApplicationCacheManifestSelectInsecureOrigin = 1245,
995 ApplicationCacheManifestSelectSecureOrigin = 1246, 992 ApplicationCacheManifestSelectSecureOrigin = 1246,
996 ApplicationCacheAPIInsecureOrigin = 1247, 993 ApplicationCacheAPIInsecureOrigin = 1247,
997 ApplicationCacheAPISecureOrigin = 1248, 994 ApplicationCacheAPISecureOrigin = 1248,
998 // The above items are available in M50 branch 995 // The above items are available in M50 branch
999 996
1000 CSSAtRuleApply = 1249, 997 CSSAtRuleApply = 1249,
1001 CSSSelectorPseudoAny = 1250, 998 CSSSelectorPseudoAny = 1250,
1002 PannerNodeSetVelocity = 1251,
1003 DocumentAllItemNoArguments = 1252, 999 DocumentAllItemNoArguments = 1252,
1004 DocumentAllItemNamed = 1253, 1000 DocumentAllItemNamed = 1253,
1005 DocumentAllItemIndexed = 1254, 1001 DocumentAllItemIndexed = 1254,
1006 DocumentAllItemIndexedWithNonNumber = 1255, 1002 DocumentAllItemIndexedWithNonNumber = 1255,
1007 DocumentAllLegacyCallNoArguments = 1256, 1003 DocumentAllLegacyCallNoArguments = 1256,
1008 DocumentAllLegacyCallNamed = 1257, 1004 DocumentAllLegacyCallNamed = 1257,
1009 DocumentAllLegacyCallIndexed = 1258, 1005 DocumentAllLegacyCallIndexed = 1258,
1010 DocumentAllLegacyCallIndexedWithNonNumber = 1259, 1006 DocumentAllLegacyCallIndexedWithNonNumber = 1259,
1011 DocumentAllLegacyCallTwoArguments = 1260, 1007 DocumentAllLegacyCallTwoArguments = 1260,
1012 HTMLLabelElementControlForNonFormAssociatedElement = 1263, 1008 HTMLLabelElementControlForNonFormAssociatedElement = 1263,
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
1392 private: 1388 private:
1393 // Tracks what features/properties need to be reported to the legacy his tograms. 1389 // Tracks what features/properties need to be reported to the legacy his tograms.
1394 BitVector m_featureBits; 1390 BitVector m_featureBits;
1395 BitVector m_CSSBits; 1391 BitVector m_CSSBits;
1396 } m_legacyCounter; 1392 } m_legacyCounter;
1397 }; 1393 };
1398 1394
1399 } // namespace blink 1395 } // namespace blink
1400 1396
1401 #endif // UseCounter_h 1397 #endif // UseCounter_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/Deprecation.cpp ('k') | third_party/WebKit/Source/modules/webaudio/AudioListener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698