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

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

Issue 1233483002: Add counters for add/removeEventListener() called with one argument (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: No [Conditional] support Created 5 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « 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 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 AudioContextCreateStereoPanner = 647, 553 AudioContextCreateStereoPanner = 647,
554 AudioContextCreateWaveShaper = 648, 554 AudioContextCreateWaveShaper = 648,
555 AudioContextDecodeAudioData = 649, 555 AudioContextDecodeAudioData = 649,
556 AudioContextResume = 650, 556 AudioContextResume = 650,
557 AudioContextSuspend = 651, 557 AudioContextSuspend = 651,
558 AudioContext = 652, 558 AudioContext = 652,
559 OfflineAudioContext = 653, 559 OfflineAudioContext = 653,
560 PrefixedAudioContext = 654, 560 PrefixedAudioContext = 654,
561 PrefixedOfflineAudioContext = 655, 561 PrefixedOfflineAudioContext = 655,
562 AddEventListenerNoArguments = 656, 562 AddEventListenerNoArguments = 656,
563 AddEventListenerOneArgument = 657,
563 RemoveEventListenerNoArguments = 658, 564 RemoveEventListenerNoArguments = 658,
565 RemoveEventListenerOneArgument = 659,
564 MixedContentInNonHTTPSFrameThatRestrictsMixedContent = 661, 566 MixedContentInNonHTTPSFrameThatRestrictsMixedContent = 661,
565 MixedContentInSecureFrameThatDoesNotRestrictMixedContent = 662, 567 MixedContentInSecureFrameThatDoesNotRestrictMixedContent = 662,
566 MixedContentWebSocket = 663, 568 MixedContentWebSocket = 663,
567 SyntheticKeyframesInCompositedCSSAnimation = 664, 569 SyntheticKeyframesInCompositedCSSAnimation = 664,
568 MixedContentFormPresent = 665, 570 MixedContentFormPresent = 665,
569 GetUserMediaInsecureOrigin = 666, 571 GetUserMediaInsecureOrigin = 666,
570 GetUserMediaSecureOrigin = 667, 572 GetUserMediaSecureOrigin = 667,
571 // The above items are available in M41 branch. 573 // The above items are available in M41 branch.
572 574
573 DeviceMotionInsecureOrigin = 668, 575 DeviceMotionInsecureOrigin = 668,
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 870
869 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } 871 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); }
870 872
871 CountBits m_countBits; 873 CountBits m_countBits;
872 BitVector m_CSSFeatureBits; 874 BitVector m_CSSFeatureBits;
873 }; 875 };
874 876
875 } // namespace blink 877 } // namespace blink
876 878
877 #endif // UseCounter_h 879 #endif // UseCounter_h
OLDNEW
« no previous file with comments | « Source/core/events/EventTarget.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698