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

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

Issue 1426403003: canvas: Remove darker composite operator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 SVG1DOM = 567, 472 SVG1DOM = 567,
473 SVGPathSegDOM = 568, 473 SVGPathSegDOM = 568,
474 SVGTransformListConsolidate = 569, 474 SVGTransformListConsolidate = 569,
475 SVGAnimatedTransformListBaseVal = 570, 475 SVGAnimatedTransformListBaseVal = 570,
476 QuotedAnimationName = 571, 476 QuotedAnimationName = 571,
477 QuotedKeyframesRule = 572, 477 QuotedKeyframesRule = 572,
478 SrcsetDroppedCandidate = 573, 478 SrcsetDroppedCandidate = 573,
479 WindowPostMessage = 574, 479 WindowPostMessage = 574,
480 WindowPostMessageWithLegacyTargetOriginArgument = 575, 480 WindowPostMessageWithLegacyTargetOriginArgument = 575,
481 RenderRuby = 576, 481 RenderRuby = 576,
482 CanvasRenderingContext2DCompositeOperationDarker = 577,
483 ScriptElementWithInvalidTypeHasSrc = 578, 482 ScriptElementWithInvalidTypeHasSrc = 578,
484 XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload = 581, 483 XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload = 581,
485 CSSSelectorPseudoScrollbar = 582, 484 CSSSelectorPseudoScrollbar = 582,
486 CSSSelectorPseudoScrollbarButton = 583, 485 CSSSelectorPseudoScrollbarButton = 583,
487 CSSSelectorPseudoScrollbarThumb = 584, 486 CSSSelectorPseudoScrollbarThumb = 584,
488 CSSSelectorPseudoScrollbarTrack = 585, 487 CSSSelectorPseudoScrollbarTrack = 585,
489 CSSSelectorPseudoScrollbarTrackPiece = 586, 488 CSSSelectorPseudoScrollbarTrackPiece = 586,
490 LangAttribute = 587, 489 LangAttribute = 587,
491 LangAttributeOnHTML = 588, 490 LangAttributeOnHTML = 588,
492 LangAttributeOnBody = 589, 491 LangAttributeOnBody = 589,
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 957
959 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); } 958 bool hasRecordedMeasurement(Feature feature) const { return m_countBits.hasR ecordedMeasurement(feature); }
960 959
961 CountBits m_countBits; 960 CountBits m_countBits;
962 BitVector m_CSSFeatureBits; 961 BitVector m_CSSFeatureBits;
963 }; 962 };
964 963
965 } // namespace blink 964 } // namespace blink
966 965
967 #endif // UseCounter_h 966 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698