| 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 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #ifndef UseCounter_h | 26 #ifndef UseCounter_h |
| 27 #define UseCounter_h | 27 #define UseCounter_h |
| 28 | 28 |
| 29 #include "core/CSSPropertyNames.h" | 29 #include "core/CSSPropertyNames.h" |
| 30 #include "core/CoreExport.h" | 30 #include "core/CoreExport.h" |
| 31 #include "core/css/parser/CSSParserMode.h" | 31 #include "core/css/parser/CSSParserMode.h" |
| 32 #include "platform/heap/GarbageCollected.h" | 32 #include "platform/heap/GarbageCollected.h" |
| 33 #include "platform/heap/HeapAllocator.h" | 33 #include "platform/heap/HeapAllocator.h" |
| 34 #include "platform/weborigin/KURL.h" | 34 #include "platform/weborigin/KURL.h" |
| 35 #include "platform/wtf/BitVector.h" |
| 36 #include "platform/wtf/Noncopyable.h" |
| 37 #include "platform/wtf/text/WTFString.h" |
| 35 #include "v8/include/v8.h" | 38 #include "v8/include/v8.h" |
| 36 #include "wtf/BitVector.h" | |
| 37 #include "wtf/Noncopyable.h" | |
| 38 #include "wtf/text/WTFString.h" | |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class CSSStyleSheet; | 42 class CSSStyleSheet; |
| 43 class Document; | 43 class Document; |
| 44 class EnumerationHistogram; | 44 class EnumerationHistogram; |
| 45 class ExecutionContext; | 45 class ExecutionContext; |
| 46 class Frame; | 46 class Frame; |
| 47 class StyleSheetContents; | 47 class StyleSheetContents; |
| 48 | 48 |
| (...skipping 1595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1644 // Tracks what features/properties need to be reported to the legacy | 1644 // Tracks what features/properties need to be reported to the legacy |
| 1645 // histograms. | 1645 // histograms. |
| 1646 BitVector feature_bits_; | 1646 BitVector feature_bits_; |
| 1647 BitVector css_bits_; | 1647 BitVector css_bits_; |
| 1648 } legacy_counter_; | 1648 } legacy_counter_; |
| 1649 }; | 1649 }; |
| 1650 | 1650 |
| 1651 } // namespace blink | 1651 } // namespace blink |
| 1652 | 1652 |
| 1653 #endif // UseCounter_h | 1653 #endif // UseCounter_h |
| OLD | NEW |