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

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

Issue 1607653002: Remove getComputedStyle(e).css* properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unnecessary property name prefix check Created 4 years, 11 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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 BreakIterator = 556, 461 BreakIterator = 556,
462 ScreenOrientationAngle = 557, 462 ScreenOrientationAngle = 557,
463 ScreenOrientationType = 558, 463 ScreenOrientationType = 558,
464 ScreenOrientationLock = 559, 464 ScreenOrientationLock = 559,
465 ScreenOrientationUnlock = 560, 465 ScreenOrientationUnlock = 560,
466 GeolocationSecureOrigin = 561, 466 GeolocationSecureOrigin = 561,
467 GeolocationInsecureOrigin = 562, 467 GeolocationInsecureOrigin = 562,
468 NotificationSecureOrigin = 563, 468 NotificationSecureOrigin = 563,
469 NotificationInsecureOrigin = 564, 469 NotificationInsecureOrigin = 564,
470 NotificationShowEvent = 565, 470 NotificationShowEvent = 565,
471 CSSXGetComputedStyleQueries = 566,
472 SVGTransformListConsolidate = 569, 471 SVGTransformListConsolidate = 569,
473 SVGAnimatedTransformListBaseVal = 570, 472 SVGAnimatedTransformListBaseVal = 570,
474 QuotedAnimationName = 571, 473 QuotedAnimationName = 571,
475 QuotedKeyframesRule = 572, 474 QuotedKeyframesRule = 572,
476 SrcsetDroppedCandidate = 573, 475 SrcsetDroppedCandidate = 573,
477 WindowPostMessage = 574, 476 WindowPostMessage = 574,
478 WindowPostMessageWithLegacyTargetOriginArgument = 575, 477 WindowPostMessageWithLegacyTargetOriginArgument = 575,
479 RenderRuby = 576, 478 RenderRuby = 576,
480 ScriptElementWithInvalidTypeHasSrc = 578, 479 ScriptElementWithInvalidTypeHasSrc = 578,
481 XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload = 581, 480 XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload = 581,
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 1067
1069 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } 1068 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); }
1070 1069
1071 CountBits m_countBits; 1070 CountBits m_countBits;
1072 BitVector m_CSSFeatureBits; 1071 BitVector m_CSSFeatureBits;
1073 }; 1072 };
1074 1073
1075 } // namespace blink 1074 } // namespace blink
1076 1075
1077 #endif // UseCounter_h 1076 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698