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

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

Issue 2380183002: Remove WebAudio doppler effect API surface (already no-ops) (Closed)
Patch Set: 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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 MixedContentPresent = 609, 480 MixedContentPresent = 609,
481 MixedContentBlockable = 610, 481 MixedContentBlockable = 610,
482 MixedContentAudio = 611, 482 MixedContentAudio = 611,
483 MixedContentDownload = 612, 483 MixedContentDownload = 612,
484 MixedContentFavicon = 613, 484 MixedContentFavicon = 613,
485 MixedContentImage = 614, 485 MixedContentImage = 614,
486 MixedContentInternal = 615, 486 MixedContentInternal = 615,
487 MixedContentPlugin = 616, 487 MixedContentPlugin = 616,
488 MixedContentPrefetch = 617, 488 MixedContentPrefetch = 617,
489 MixedContentVideo = 618, 489 MixedContentVideo = 618,
490 AudioListenerDopplerFactor = 620,
491 AudioListenerSpeedOfSound = 621,
492 AudioListenerSetVelocity = 622,
493 CSSSelectorPseudoFullScreenAncestor = 628, 490 CSSSelectorPseudoFullScreenAncestor = 628,
494 CSSSelectorPseudoFullScreen = 629, 491 CSSSelectorPseudoFullScreen = 629,
495 WebKitCSSMatrix = 630, 492 WebKitCSSMatrix = 630,
496 AudioContextCreateAnalyser = 631, 493 AudioContextCreateAnalyser = 631,
497 AudioContextCreateBiquadFilter = 632, 494 AudioContextCreateBiquadFilter = 632,
498 AudioContextCreateBufferSource = 633, 495 AudioContextCreateBufferSource = 633,
499 AudioContextCreateChannelMerger = 634, 496 AudioContextCreateChannelMerger = 634,
500 AudioContextCreateChannelSplitter = 635, 497 AudioContextCreateChannelSplitter = 635,
501 AudioContextCreateConvolver = 636, 498 AudioContextCreateConvolver = 636,
502 AudioContextCreateDelay = 637, 499 AudioContextCreateDelay = 637,
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 WebAnimationHyphenatedProperty = 1243, 991 WebAnimationHyphenatedProperty = 1243,
995 FormControlsCollectionReturnsRadioNodeListForFieldSet = 1244, 992 FormControlsCollectionReturnsRadioNodeListForFieldSet = 1244,
996 ApplicationCacheManifestSelectInsecureOrigin = 1245, 993 ApplicationCacheManifestSelectInsecureOrigin = 1245,
997 ApplicationCacheManifestSelectSecureOrigin = 1246, 994 ApplicationCacheManifestSelectSecureOrigin = 1246,
998 ApplicationCacheAPIInsecureOrigin = 1247, 995 ApplicationCacheAPIInsecureOrigin = 1247,
999 ApplicationCacheAPISecureOrigin = 1248, 996 ApplicationCacheAPISecureOrigin = 1248,
1000 // The above items are available in M50 branch 997 // The above items are available in M50 branch
1001 998
1002 CSSAtRuleApply = 1249, 999 CSSAtRuleApply = 1249,
1003 CSSSelectorPseudoAny = 1250, 1000 CSSSelectorPseudoAny = 1250,
1004 PannerNodeSetVelocity = 1251,
1005 DocumentAllItemNoArguments = 1252, 1001 DocumentAllItemNoArguments = 1252,
1006 DocumentAllItemNamed = 1253, 1002 DocumentAllItemNamed = 1253,
1007 DocumentAllItemIndexed = 1254, 1003 DocumentAllItemIndexed = 1254,
1008 DocumentAllItemIndexedWithNonNumber = 1255, 1004 DocumentAllItemIndexedWithNonNumber = 1255,
1009 DocumentAllLegacyCallNoArguments = 1256, 1005 DocumentAllLegacyCallNoArguments = 1256,
1010 DocumentAllLegacyCallNamed = 1257, 1006 DocumentAllLegacyCallNamed = 1257,
1011 DocumentAllLegacyCallIndexed = 1258, 1007 DocumentAllLegacyCallIndexed = 1258,
1012 DocumentAllLegacyCallIndexedWithNonNumber = 1259, 1008 DocumentAllLegacyCallIndexedWithNonNumber = 1259,
1013 DocumentAllLegacyCallTwoArguments = 1260, 1009 DocumentAllLegacyCallTwoArguments = 1260,
1014 HTMLLabelElementControlForNonFormAssociatedElement = 1263, 1010 HTMLLabelElementControlForNonFormAssociatedElement = 1263,
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
1400 private: 1396 private:
1401 // Tracks what features/properties need to be reported to the legacy his tograms. 1397 // Tracks what features/properties need to be reported to the legacy his tograms.
1402 BitVector m_featureBits; 1398 BitVector m_featureBits;
1403 BitVector m_CSSBits; 1399 BitVector m_CSSBits;
1404 } m_legacyCounter; 1400 } m_legacyCounter;
1405 }; 1401 };
1406 1402
1407 } // namespace blink 1403 } // namespace blink
1408 1404
1409 #endif // UseCounter_h 1405 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698