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

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: 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 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 MixedContentPresent = 609, 469 MixedContentPresent = 609,
470 MixedContentBlockable = 610, 470 MixedContentBlockable = 610,
471 MixedContentAudio = 611, 471 MixedContentAudio = 611,
472 MixedContentDownload = 612, 472 MixedContentDownload = 612,
473 MixedContentFavicon = 613, 473 MixedContentFavicon = 613,
474 MixedContentImage = 614, 474 MixedContentImage = 614,
475 MixedContentInternal = 615, 475 MixedContentInternal = 615,
476 MixedContentPlugin = 616, 476 MixedContentPlugin = 616,
477 MixedContentPrefetch = 617, 477 MixedContentPrefetch = 617,
478 MixedContentVideo = 618, 478 MixedContentVideo = 618,
479 AudioListenerDopplerFactor = 620,
480 AudioListenerSpeedOfSound = 621,
481 AudioListenerSetVelocity = 622,
482 CSSSelectorPseudoFullScreenAncestor = 628, 479 CSSSelectorPseudoFullScreenAncestor = 628,
483 CSSSelectorPseudoFullScreen = 629, 480 CSSSelectorPseudoFullScreen = 629,
484 WebKitCSSMatrix = 630, 481 WebKitCSSMatrix = 630,
485 AudioContextCreateAnalyser = 631, 482 AudioContextCreateAnalyser = 631,
486 AudioContextCreateBiquadFilter = 632, 483 AudioContextCreateBiquadFilter = 632,
487 AudioContextCreateBufferSource = 633, 484 AudioContextCreateBufferSource = 633,
488 AudioContextCreateChannelMerger = 634, 485 AudioContextCreateChannelMerger = 634,
489 AudioContextCreateChannelSplitter = 635, 486 AudioContextCreateChannelSplitter = 635,
490 AudioContextCreateConvolver = 636, 487 AudioContextCreateConvolver = 636,
491 AudioContextCreateDelay = 637, 488 AudioContextCreateDelay = 637,
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 WebAnimationHyphenatedProperty = 1243, 980 WebAnimationHyphenatedProperty = 1243,
984 FormControlsCollectionReturnsRadioNodeListForFieldSet = 1244, 981 FormControlsCollectionReturnsRadioNodeListForFieldSet = 1244,
985 ApplicationCacheManifestSelectInsecureOrigin = 1245, 982 ApplicationCacheManifestSelectInsecureOrigin = 1245,
986 ApplicationCacheManifestSelectSecureOrigin = 1246, 983 ApplicationCacheManifestSelectSecureOrigin = 1246,
987 ApplicationCacheAPIInsecureOrigin = 1247, 984 ApplicationCacheAPIInsecureOrigin = 1247,
988 ApplicationCacheAPISecureOrigin = 1248, 985 ApplicationCacheAPISecureOrigin = 1248,
989 // The above items are available in M50 branch 986 // The above items are available in M50 branch
990 987
991 CSSAtRuleApply = 1249, 988 CSSAtRuleApply = 1249,
992 CSSSelectorPseudoAny = 1250, 989 CSSSelectorPseudoAny = 1250,
993 PannerNodeSetVelocity = 1251,
994 DocumentAllItemNoArguments = 1252, 990 DocumentAllItemNoArguments = 1252,
995 DocumentAllItemNamed = 1253, 991 DocumentAllItemNamed = 1253,
996 DocumentAllItemIndexed = 1254, 992 DocumentAllItemIndexed = 1254,
997 DocumentAllItemIndexedWithNonNumber = 1255, 993 DocumentAllItemIndexedWithNonNumber = 1255,
998 DocumentAllLegacyCallNoArguments = 1256, 994 DocumentAllLegacyCallNoArguments = 1256,
999 DocumentAllLegacyCallNamed = 1257, 995 DocumentAllLegacyCallNamed = 1257,
1000 DocumentAllLegacyCallIndexed = 1258, 996 DocumentAllLegacyCallIndexed = 1258,
1001 DocumentAllLegacyCallIndexedWithNonNumber = 1259, 997 DocumentAllLegacyCallIndexedWithNonNumber = 1259,
1002 DocumentAllLegacyCallTwoArguments = 1260, 998 DocumentAllLegacyCallTwoArguments = 1260,
1003 HTMLLabelElementControlForNonFormAssociatedElement = 1263, 999 HTMLLabelElementControlForNonFormAssociatedElement = 1263,
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
1413 private: 1409 private:
1414 // Tracks what features/properties need to be reported to the legacy histogr ams. 1410 // Tracks what features/properties need to be reported to the legacy histogr ams.
1415 BitVector m_featureBits; 1411 BitVector m_featureBits;
1416 BitVector m_CSSBits; 1412 BitVector m_CSSBits;
1417 } m_legacyCounter; 1413 } m_legacyCounter;
1418 }; 1414 };
1419 1415
1420 } // namespace blink 1416 } // namespace blink
1421 1417
1422 #endif // UseCounter_h 1418 #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