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

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

Issue 1461993002: Make addEventListener/removeEventListener arguments non-optional (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: drop the use counters 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
« no previous file with comments | « third_party/WebKit/Source/core/events/EventTarget.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 AudioContextCreateScriptProcessor = 646, 535 AudioContextCreateScriptProcessor = 646,
536 AudioContextCreateStereoPanner = 647, 536 AudioContextCreateStereoPanner = 647,
537 AudioContextCreateWaveShaper = 648, 537 AudioContextCreateWaveShaper = 648,
538 AudioContextDecodeAudioData = 649, 538 AudioContextDecodeAudioData = 649,
539 AudioContextResume = 650, 539 AudioContextResume = 650,
540 AudioContextSuspend = 651, 540 AudioContextSuspend = 651,
541 AudioContext = 652, 541 AudioContext = 652,
542 OfflineAudioContext = 653, 542 OfflineAudioContext = 653,
543 PrefixedAudioContext = 654, 543 PrefixedAudioContext = 654,
544 PrefixedOfflineAudioContext = 655, 544 PrefixedOfflineAudioContext = 655,
545 AddEventListenerNoArguments = 656,
546 AddEventListenerOneArgument = 657,
547 RemoveEventListenerNoArguments = 658,
548 RemoveEventListenerOneArgument = 659,
549 MixedContentInNonHTTPSFrameThatRestrictsMixedContent = 661, 545 MixedContentInNonHTTPSFrameThatRestrictsMixedContent = 661,
550 MixedContentInSecureFrameThatDoesNotRestrictMixedContent = 662, 546 MixedContentInSecureFrameThatDoesNotRestrictMixedContent = 662,
551 MixedContentWebSocket = 663, 547 MixedContentWebSocket = 663,
552 SyntheticKeyframesInCompositedCSSAnimation = 664, 548 SyntheticKeyframesInCompositedCSSAnimation = 664,
553 MixedContentFormPresent = 665, 549 MixedContentFormPresent = 665,
554 GetUserMediaInsecureOrigin = 666, 550 GetUserMediaInsecureOrigin = 666,
555 GetUserMediaSecureOrigin = 667, 551 GetUserMediaSecureOrigin = 667,
556 // The above items are available in M41 branch. 552 // The above items are available in M41 branch.
557 553
558 DeviceMotionInsecureOrigin = 668, 554 DeviceMotionInsecureOrigin = 668,
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
985 981
986 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } 982 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); }
987 983
988 CountBits m_countBits; 984 CountBits m_countBits;
989 BitVector m_CSSFeatureBits; 985 BitVector m_CSSFeatureBits;
990 }; 986 };
991 987
992 } // namespace blink 988 } // namespace blink
993 989
994 #endif // UseCounter_h 990 #endif // UseCounter_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/events/EventTarget.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698