| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef Deprecation_h | 5 #ifndef Deprecation_h |
| 6 #define Deprecation_h | 6 #define Deprecation_h |
| 7 | 7 |
| 8 #include "core/CSSPropertyNames.h" | 8 #include "core/CSSPropertyNames.h" |
| 9 #include "core/CoreExport.h" | 9 #include "core/CoreExport.h" |
| 10 #include "core/frame/UseCounter.h" | 10 #include "core/frame/UseCounter.h" |
| 11 #include "wtf/BitVector.h" | 11 #include "platform/wtf/BitVector.h" |
| 12 #include "wtf/Noncopyable.h" | 12 #include "platform/wtf/Noncopyable.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 class LocalFrame; | 16 class LocalFrame; |
| 17 | 17 |
| 18 class CORE_EXPORT Deprecation { | 18 class CORE_EXPORT Deprecation { |
| 19 DISALLOW_NEW(); | 19 DISALLOW_NEW(); |
| 20 WTF_MAKE_NONCOPYABLE(Deprecation); | 20 WTF_MAKE_NONCOPYABLE(Deprecation); |
| 21 | 21 |
| 22 public: | 22 public: |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 // CSSPropertyIDs that aren't deprecated return an empty string. | 59 // CSSPropertyIDs that aren't deprecated return an empty string. |
| 60 static String DeprecationMessage(CSSPropertyID unresolved_property); | 60 static String DeprecationMessage(CSSPropertyID unresolved_property); |
| 61 | 61 |
| 62 BitVector css_property_deprecation_bits_; | 62 BitVector css_property_deprecation_bits_; |
| 63 unsigned mute_count_; | 63 unsigned mute_count_; |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 } // namespace blink | 66 } // namespace blink |
| 67 | 67 |
| 68 #endif // Deprecation_h | 68 #endif // Deprecation_h |
| OLD | NEW |