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

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

Issue 408813007: Remove non-standard API entry points in CanvasRenderingContext2D (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove some unnecessary mac/virtual/gpu baselines Created 6 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 | Annotate | Revision Log
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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 PrefixedDocumentCancelFullScreen = 321, 301 PrefixedDocumentCancelFullScreen = 321,
302 PrefixedDocumentFullscreenEnabled = 322, 302 PrefixedDocumentFullscreenEnabled = 322,
303 PrefixedDocumentFullscreenElement = 323, 303 PrefixedDocumentFullscreenElement = 323,
304 PrefixedDocumentExitFullscreen = 324, 304 PrefixedDocumentExitFullscreen = 324,
305 // The above items are available in M35 branch. 305 // The above items are available in M35 branch.
306 306
307 SVGForeignObjectElement = 325, 307 SVGForeignObjectElement = 325,
308 SelectionSetPosition = 327, 308 SelectionSetPosition = 327,
309 AnimationPlayerFinishEvent = 328, 309 AnimationPlayerFinishEvent = 328,
310 SVGSVGElementInXMLDocument = 329, 310 SVGSVGElementInXMLDocument = 329,
311 CanvasRenderingContext2DSetAlpha = 330,
312 CanvasRenderingContext2DSetCompositeOperation = 331,
313 CanvasRenderingContext2DSetLineWidth = 332,
314 CanvasRenderingContext2DSetLineCap = 333,
315 CanvasRenderingContext2DSetLineJoin = 334,
316 CanvasRenderingContext2DSetMiterLimit = 335,
317 CanvasRenderingContext2DClearShadow = 336,
318 CanvasRenderingContext2DSetStrokeColor = 337,
319 CanvasRenderingContext2DSetFillColor = 338,
320 CanvasRenderingContext2DDrawImageFromRect = 339,
321 CanvasRenderingContext2DSetShadow = 340,
322 PrefixedPerformanceClearResourceTimings = 341, 311 PrefixedPerformanceClearResourceTimings = 341,
323 PrefixedPerformanceSetResourceTimingBufferSize = 342, 312 PrefixedPerformanceSetResourceTimingBufferSize = 342,
324 EventSrcElement = 343, 313 EventSrcElement = 343,
325 EventCancelBubble = 344, 314 EventCancelBubble = 344,
326 EventPath = 345, 315 EventPath = 345,
327 EventClipboardData = 346, 316 EventClipboardData = 346,
328 NodeIteratorDetach = 347, 317 NodeIteratorDetach = 347,
329 AttrNodeValue = 348, 318 AttrNodeValue = 348,
330 AttrTextContent = 349, 319 AttrTextContent = 349,
331 EventGetReturnValueTrue = 350, 320 EventGetReturnValueTrue = 350,
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 624
636 void updateMeasurements(); 625 void updateMeasurements();
637 626
638 OwnPtr<BitVector> m_countBits; 627 OwnPtr<BitVector> m_countBits;
639 BitVector m_CSSFeatureBits; 628 BitVector m_CSSFeatureBits;
640 }; 629 };
641 630
642 } // namespace blink 631 } // namespace blink
643 632
644 #endif // UseCounter_h 633 #endif // UseCounter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698