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

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

Issue 1374233003: Remove SVGSVGElement.pixelUnitToMillimeterX and friends (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 636 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 FullscreenSecureOrigin = 765, 647 FullscreenSecureOrigin = 765,
648 FullscreenInsecureOrigin = 766, 648 FullscreenInsecureOrigin = 766,
649 DialogInSandboxedContext = 767, 649 DialogInSandboxedContext = 767,
650 SVGSMILAnimationInImageRegardlessOfCache = 768, 650 SVGSMILAnimationInImageRegardlessOfCache = 768,
651 EncryptedMediaSecureOrigin = 770, 651 EncryptedMediaSecureOrigin = 770,
652 EncryptedMediaInsecureOrigin = 771, 652 EncryptedMediaInsecureOrigin = 771,
653 PerformanceFrameTiming = 772, 653 PerformanceFrameTiming = 772,
654 V8Element_Animate_Method = 773, 654 V8Element_Animate_Method = 773,
655 // The above items are available in M44 branch. 655 // The above items are available in M44 branch.
656 656
657 V8SVGSVGElement_PixelUnitToMillimeterX_AttributeGetter = 774,
658 V8SVGSVGElement_PixelUnitToMillimeterY_AttributeGetter = 775,
659 V8SVGSVGElement_ScreenPixelToMillimeterX_AttributeGetter = 776,
660 V8SVGSVGElement_ScreenPixelToMillimeterY_AttributeGetter = 777,
661 V8SVGSVGElement_GetElementById_Method = 778, 657 V8SVGSVGElement_GetElementById_Method = 778,
662 ElementCreateShadowRootMultiple = 779, 658 ElementCreateShadowRootMultiple = 779,
663 V8MessageChannel_Constructor = 780, 659 V8MessageChannel_Constructor = 780,
664 V8MessagePort_PostMessage_Method = 781, 660 V8MessagePort_PostMessage_Method = 781,
665 V8MessagePort_Start_Method = 782, 661 V8MessagePort_Start_Method = 782,
666 V8MessagePort_Close_Method = 783, 662 V8MessagePort_Close_Method = 783,
667 MessagePortsTransferred = 784, 663 MessagePortsTransferred = 784,
668 CSSKeyframesRuleAnonymousIndexedGetter = 785, 664 CSSKeyframesRuleAnonymousIndexedGetter = 785,
669 V8Screen_AvailLeft_AttributeGetter = 786, 665 V8Screen_AvailLeft_AttributeGetter = 786,
670 V8Screen_AvailTop_AttributeGetter = 787, 666 V8Screen_AvailTop_AttributeGetter = 787,
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
934 930
935 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } 931 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); }
936 932
937 CountBits m_countBits; 933 CountBits m_countBits;
938 BitVector m_CSSFeatureBits; 934 BitVector m_CSSFeatureBits;
939 }; 935 };
940 936
941 } // namespace blink 937 } // namespace blink
942 938
943 #endif // UseCounter_h 939 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698