| 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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 NamedNodeMapRemoveNamedItem = 308, | 325 NamedNodeMapRemoveNamedItem = 308, |
| 326 NamedNodeMapItem = 309, | 326 NamedNodeMapItem = 309, |
| 327 NamedNodeMapGetNamedItemNS = 310, | 327 NamedNodeMapGetNamedItemNS = 310, |
| 328 NamedNodeMapSetNamedItemNS = 311, | 328 NamedNodeMapSetNamedItemNS = 311, |
| 329 NamedNodeMapRemoveNamedItemNS = 312, | 329 NamedNodeMapRemoveNamedItemNS = 312, |
| 330 OpenWebDatabaseInWorker = 313, | 330 OpenWebDatabaseInWorker = 313, |
| 331 OpenWebDatabaseSyncInWorker = 314, | 331 OpenWebDatabaseSyncInWorker = 314, |
| 332 PrefixedAllowFullscreenAttribute = 315, | 332 PrefixedAllowFullscreenAttribute = 315, |
| 333 XHRProgressEventPosition = 316, | 333 XHRProgressEventPosition = 316, |
| 334 XHRProgressEventTotalSize = 317, | 334 XHRProgressEventTotalSize = 317, |
| 335 PrefixedDocumentIsFullscreen = 318, |
| 336 PrefixedDocumentFullScreenKeyboardInputAllowed = 319, |
| 337 PrefixedDocumentCurrentFullScreenElement = 320, |
| 338 PrefixedDocumentCancelFullScreen = 321, |
| 339 PrefixedDocumentFullscreenEnabled = 322, |
| 340 PrefixedDocumentFullscreenElement = 323, |
| 341 PrefixedDocumentExitFullscreen = 324, |
| 335 // Add new features immediately above this line. Don't change assigned | 342 // Add new features immediately above this line. Don't change assigned |
| 336 // numbers of any item, and don't reuse removed slots. | 343 // numbers of any item, and don't reuse removed slots. |
| 337 NumberOfFeatures, // This enum value must be last. | 344 NumberOfFeatures, // This enum value must be last. |
| 338 }; | 345 }; |
| 339 | 346 |
| 340 // "count" sets the bit for this feature to 1. Repeated calls are ignored. | 347 // "count" sets the bit for this feature to 1. Repeated calls are ignored. |
| 341 static void count(const Document&, Feature); | 348 static void count(const Document&, Feature); |
| 342 static void count(const ExecutionContext*, Feature); | 349 static void count(const ExecutionContext*, Feature); |
| 343 void count(CSSParserContext, CSSPropertyID); | 350 void count(CSSParserContext, CSSPropertyID); |
| 344 void count(Feature); | 351 void count(Feature); |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 | 394 |
| 388 void updateMeasurements(); | 395 void updateMeasurements(); |
| 389 | 396 |
| 390 OwnPtr<BitVector> m_countBits; | 397 OwnPtr<BitVector> m_countBits; |
| 391 BitVector m_CSSFeatureBits; | 398 BitVector m_CSSFeatureBits; |
| 392 }; | 399 }; |
| 393 | 400 |
| 394 } // namespace WebCore | 401 } // namespace WebCore |
| 395 | 402 |
| 396 #endif // UseCounter_h | 403 #endif // UseCounter_h |
| OLD | NEW |