| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright (C) 2012 Google, Inc. All rights reserved. | 3 * Copyright (C) 2012 Google, Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 case CSSPropertyAnimationDuration: return 427; | 489 case CSSPropertyAnimationDuration: return 427; |
| 490 case CSSPropertyAnimationFillMode: return 428; | 490 case CSSPropertyAnimationFillMode: return 428; |
| 491 case CSSPropertyAnimationIterationCount: return 429; | 491 case CSSPropertyAnimationIterationCount: return 429; |
| 492 case CSSPropertyAnimationName: return 430; | 492 case CSSPropertyAnimationName: return 430; |
| 493 case CSSPropertyAnimationPlayState: return 431; | 493 case CSSPropertyAnimationPlayState: return 431; |
| 494 case CSSPropertyAnimationTimingFunction: return 432; | 494 case CSSPropertyAnimationTimingFunction: return 432; |
| 495 case CSSPropertyObjectFit: return 433; | 495 case CSSPropertyObjectFit: return 433; |
| 496 case CSSPropertyPaintOrder: return 434; | 496 case CSSPropertyPaintOrder: return 434; |
| 497 case CSSPropertyMaskSourceType: return 435; | 497 case CSSPropertyMaskSourceType: return 435; |
| 498 case CSSPropertyIsolation: return 436; | 498 case CSSPropertyIsolation: return 436; |
| 499 case CSSPropertyObjectPosition: return 437; |
| 499 | 500 |
| 500 // Add new features above this line (don't change the assigned numbers of th
e existing | 501 // Add new features above this line (don't change the assigned numbers of th
e existing |
| 501 // items) and update maximumCSSSampleId() with the new maximum value. | 502 // items) and update maximumCSSSampleId() with the new maximum value. |
| 502 | 503 |
| 503 case CSSPropertyInvalid: | 504 case CSSPropertyInvalid: |
| 504 case CSSPropertyVariable: | 505 case CSSPropertyVariable: |
| 505 ASSERT_NOT_REACHED(); | 506 ASSERT_NOT_REACHED(); |
| 506 return 0; | 507 return 0; |
| 507 } | 508 } |
| 508 | 509 |
| 509 ASSERT_NOT_REACHED(); | 510 ASSERT_NOT_REACHED(); |
| 510 return 0; | 511 return 0; |
| 511 } | 512 } |
| 512 | 513 |
| 513 static int maximumCSSSampleId() { return 434; } | 514 static int maximumCSSSampleId() { return 437; } |
| 514 | 515 |
| 515 UseCounter::UseCounter() | 516 UseCounter::UseCounter() |
| 516 { | 517 { |
| 517 m_CSSFeatureBits.ensureSize(lastCSSProperty + 1); | 518 m_CSSFeatureBits.ensureSize(lastCSSProperty + 1); |
| 518 m_CSSFeatureBits.clearAll(); | 519 m_CSSFeatureBits.clearAll(); |
| 519 } | 520 } |
| 520 | 521 |
| 521 UseCounter::~UseCounter() | 522 UseCounter::~UseCounter() |
| 522 { | 523 { |
| 523 // We always log PageDestruction so that we have a scale for the rest of the
features. | 524 // We always log PageDestruction so that we have a scale for the rest of the
features. |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 707 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) | 708 UseCounter* UseCounter::getFrom(const StyleSheetContents* sheetContents) |
| 708 { | 709 { |
| 709 // FIXME: We may want to handle stylesheets that have multiple owners | 710 // FIXME: We may want to handle stylesheets that have multiple owners |
| 710 // http://crbug.com/242125 | 711 // http://crbug.com/242125 |
| 711 if (sheetContents && !sheetContents->isUserStyleSheet() && sheetContents->ha
sSingleOwnerNode()) | 712 if (sheetContents && !sheetContents->isUserStyleSheet() && sheetContents->ha
sSingleOwnerNode()) |
| 712 return getFrom(sheetContents->singleOwnerDocument()); | 713 return getFrom(sheetContents->singleOwnerDocument()); |
| 713 return 0; | 714 return 0; |
| 714 } | 715 } |
| 715 | 716 |
| 716 } // namespace WebCore | 717 } // namespace WebCore |
| OLD | NEW |