| OLD | NEW |
| 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 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 UIEventLayerX = 511, | 481 UIEventLayerX = 511, |
| 482 UIEventLayerY = 512, | 482 UIEventLayerY = 512, |
| 483 UIEventPageX = 513, | 483 UIEventPageX = 513, |
| 484 UIEventPageY = 514, | 484 UIEventPageY = 514, |
| 485 BgPropertiesFixed = 515, | 485 BgPropertiesFixed = 515, |
| 486 HTMLImageElementComposite = 516, | 486 HTMLImageElementComposite = 516, |
| 487 DevToolsConsoleTimeline = 517, | 487 DevToolsConsoleTimeline = 517, |
| 488 DevToolsConsoleProfile = 518, | 488 DevToolsConsoleProfile = 518, |
| 489 SVGStyleElementTitle = 519, | 489 SVGStyleElementTitle = 519, |
| 490 PictureSourceSrc = 520, | 490 PictureSourceSrc = 520, |
| 491 // The above items are available in M38 branch. |
| 492 |
| 491 Picture = 521, | 493 Picture = 521, |
| 492 Sizes = 522, | 494 Sizes = 522, |
| 493 SrcsetXDescriptor = 523, | 495 SrcsetXDescriptor = 523, |
| 494 SrcsetWDescriptor = 524, | 496 SrcsetWDescriptor = 524, |
| 495 SelectionContainsNode = 525, | 497 SelectionContainsNode = 525, |
| 496 // Add new features immediately above this line. Don't change assigned | 498 // Add new features immediately above this line. Don't change assigned |
| 497 // numbers of any item, and don't reuse removed slots. | 499 // numbers of any item, and don't reuse removed slots. |
| 498 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ | 500 // Also, run update_use_counter_feature_enum.py in chromium/src/tools/me
trics/histograms/ |
| 499 // to update the UMA mapping. | 501 // to update the UMA mapping. |
| 500 NumberOfFeatures, // This enum value must be last. | 502 NumberOfFeatures, // This enum value must be last. |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 | 558 |
| 557 void updateMeasurements(); | 559 void updateMeasurements(); |
| 558 | 560 |
| 559 OwnPtr<BitVector> m_countBits; | 561 OwnPtr<BitVector> m_countBits; |
| 560 BitVector m_CSSFeatureBits; | 562 BitVector m_CSSFeatureBits; |
| 561 }; | 563 }; |
| 562 | 564 |
| 563 } // namespace blink | 565 } // namespace blink |
| 564 | 566 |
| 565 #endif // UseCounter_h | 567 #endif // UseCounter_h |
| OLD | NEW |