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

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

Issue 1312213006: Remove MediaStream label, ended attributes and stop() method (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 DevToolsConsoleProfile = 518, 432 DevToolsConsoleProfile = 518,
433 SVGStyleElementTitle = 519, 433 SVGStyleElementTitle = 519,
434 PictureSourceSrc = 520, 434 PictureSourceSrc = 520,
435 // The above items are available in M38 branch. 435 // The above items are available in M38 branch.
436 436
437 Picture = 521, 437 Picture = 521,
438 Sizes = 522, 438 Sizes = 522,
439 SrcsetXDescriptor = 523, 439 SrcsetXDescriptor = 523,
440 SrcsetWDescriptor = 524, 440 SrcsetWDescriptor = 524,
441 SelectionContainsNode = 525, 441 SelectionContainsNode = 525,
442 MediaStreamEnded = 526,
443 XMLExternalResourceLoad = 529, 442 XMLExternalResourceLoad = 529,
444 MixedContentPrivateHostnameInPublicHostname = 530, 443 MixedContentPrivateHostnameInPublicHostname = 530,
445 LegacyProtocolEmbeddedAsSubresource = 531, 444 LegacyProtocolEmbeddedAsSubresource = 531,
446 RequestedSubresourceWithEmbeddedCredentials = 532, 445 RequestedSubresourceWithEmbeddedCredentials = 532,
447 NotificationCreated = 533, 446 NotificationCreated = 533,
448 NotificationClosed = 534, 447 NotificationClosed = 534,
449 NotificationPermissionRequested = 535, 448 NotificationPermissionRequested = 535,
450 MediaStreamLabel = 536,
451 MediaStreamStop = 537,
452 ConsoleTimeline = 538, 449 ConsoleTimeline = 538,
453 ConsoleTimelineEnd = 539, 450 ConsoleTimelineEnd = 539,
454 SRIElementWithMatchingIntegrityAttribute = 540, 451 SRIElementWithMatchingIntegrityAttribute = 540,
455 SRIElementWithNonMatchingIntegrityAttribute = 541, 452 SRIElementWithNonMatchingIntegrityAttribute = 541,
456 SRIElementWithUnparsableIntegrityAttribute = 542, 453 SRIElementWithUnparsableIntegrityAttribute = 542,
457 V8Animation_StartTime_AttributeGetter = 545, 454 V8Animation_StartTime_AttributeGetter = 545,
458 V8Animation_StartTime_AttributeSetter = 546, 455 V8Animation_StartTime_AttributeSetter = 546,
459 V8Animation_CurrentTime_AttributeGetter = 547, 456 V8Animation_CurrentTime_AttributeGetter = 547,
460 V8Animation_CurrentTime_AttributeSetter = 548, 457 V8Animation_CurrentTime_AttributeSetter = 548,
461 V8Animation_PlaybackRate_AttributeGetter = 549, 458 V8Animation_PlaybackRate_AttributeGetter = 549,
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 927
931 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } 928 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); }
932 929
933 CountBits m_countBits; 930 CountBits m_countBits;
934 BitVector m_CSSFeatureBits; 931 BitVector m_CSSFeatureBits;
935 }; 932 };
936 933
937 } // namespace blink 934 } // namespace blink
938 935
939 #endif // UseCounter_h 936 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698