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

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

Issue 2840943003: CSS Motion Path: delete implementation of motion-rotation property (Closed)
Patch Set: rename Created 3 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/core/frame/Deprecation.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 866 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 return 452; 877 return 452;
878 case CSSPropertyGrid: 878 case CSSPropertyGrid:
879 return 453; 879 return 453;
880 case CSSPropertyAll: 880 case CSSPropertyAll:
881 return 454; 881 return 454;
882 case CSSPropertyJustifyItems: 882 case CSSPropertyJustifyItems:
883 return 455; 883 return 455;
884 // CSSPropertyMotionPath was 457. 884 // CSSPropertyMotionPath was 457.
885 case CSSPropertyAliasMotionOffset: 885 case CSSPropertyAliasMotionOffset:
886 return 458; 886 return 458;
887 case CSSPropertyAliasMotionRotation: 887 // CSSPropertyAliasMotionRotation was 459.
888 return 459;
889 // CSSPropertyMotion was 460. 888 // CSSPropertyMotion was 460.
890 case CSSPropertyX: 889 case CSSPropertyX:
891 return 461; 890 return 461;
892 case CSSPropertyY: 891 case CSSPropertyY:
893 return 462; 892 return 462;
894 case CSSPropertyRx: 893 case CSSPropertyRx:
895 return 463; 894 return 463;
896 case CSSPropertyRy: 895 case CSSPropertyRy:
897 return 464; 896 return 464;
898 case CSSPropertyFontSizeAdjust: 897 case CSSPropertyFontSizeAdjust:
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
1413 } 1412 }
1414 } 1413 }
1415 1414
1416 if (needs_pages_measured_update) 1415 if (needs_pages_measured_update)
1417 css_properties_histogram.Count(totalPagesMeasuredCSSSampleId()); 1416 css_properties_histogram.Count(totalPagesMeasuredCSSSampleId());
1418 1417
1419 css_bits_.ClearAll(); 1418 css_bits_.ClearAll();
1420 } 1419 }
1421 1420
1422 } // namespace blink 1421 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/Deprecation.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698