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

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

Issue 2827003002: CSS Motion Path: delete implementation of motion-path property (Closed)
Patch Set: ManualTests 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
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 863 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 case CSSPropertyBackfaceVisibility: 874 case CSSPropertyBackfaceVisibility:
875 return 451; 875 return 451;
876 case CSSPropertyGridTemplate: 876 case CSSPropertyGridTemplate:
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 case CSSPropertyAliasMotionPath: 884 // CSSPropertyMotionPath was 457.
885 return 457;
886 case CSSPropertyAliasMotionOffset: 885 case CSSPropertyAliasMotionOffset:
887 return 458; 886 return 458;
888 case CSSPropertyAliasMotionRotation: 887 case CSSPropertyAliasMotionRotation:
889 return 459; 888 return 459;
890 // CSSPropertyMotion was 460. 889 // CSSPropertyMotion was 460.
891 case CSSPropertyX: 890 case CSSPropertyX:
892 return 461; 891 return 461;
893 case CSSPropertyY: 892 case CSSPropertyY:
894 return 462; 893 return 462;
895 case CSSPropertyRx: 894 case CSSPropertyRx:
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after
1414 } 1413 }
1415 } 1414 }
1416 1415
1417 if (needs_pages_measured_update) 1416 if (needs_pages_measured_update)
1418 css_properties_histogram.Count(totalPagesMeasuredCSSSampleId()); 1417 css_properties_histogram.Count(totalPagesMeasuredCSSSampleId());
1419 1418
1420 css_bits_.ClearAll(); 1419 css_bits_.ClearAll();
1421 } 1420 }
1422 1421
1423 } // namespace blink 1422 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698