| 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 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 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 "wtf/BitVector.h" | 32 #include "wtf/BitVector.h" |
| 33 #include "wtf/Noncopyable.h" | 33 #include "wtf/Noncopyable.h" |
| 34 #include "wtf/OwnPtr.h" |
| 35 #include "wtf/PassOwnPtr.h" |
| 34 #include "wtf/text/WTFString.h" | 36 #include "wtf/text/WTFString.h" |
| 35 #include <v8.h> | 37 #include <v8.h> |
| 36 | 38 |
| 37 namespace blink { | 39 namespace blink { |
| 38 | 40 |
| 39 class CSSStyleSheet; | 41 class CSSStyleSheet; |
| 40 class Document; | 42 class Document; |
| 41 class ExecutionContext; | 43 class ExecutionContext; |
| 42 class Frame; | 44 class Frame; |
| 43 class LocalFrame; | 45 class LocalFrame; |
| (...skipping 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1301 friend class UseCounterTest; | 1303 friend class UseCounterTest; |
| 1302 static int m_muteCount; | 1304 static int m_muteCount; |
| 1303 | 1305 |
| 1304 CountBits m_countBits; | 1306 CountBits m_countBits; |
| 1305 BitVector m_CSSFeatureBits; | 1307 BitVector m_CSSFeatureBits; |
| 1306 }; | 1308 }; |
| 1307 | 1309 |
| 1308 } // namespace blink | 1310 } // namespace blink |
| 1309 | 1311 |
| 1310 #endif // UseCounter_h | 1312 #endif // UseCounter_h |
| OLD | NEW |