Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1300)

Unified Diff: third_party/WebKit/Source/core/frame/Deprecation.h

Issue 1648593002: Revert of Add deprecation message for -webkit-background-composite (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/frame/Deprecation.h
diff --git a/third_party/WebKit/Source/core/frame/Deprecation.h b/third_party/WebKit/Source/core/frame/Deprecation.h
deleted file mode 100644
index 511b80804170cc402f5cb246624f130044c755af..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/frame/Deprecation.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef Deprecation_h
-#define Deprecation_h
-
-#include "core/CSSPropertyNames.h"
-#include "wtf/BitVector.h"
-#include "wtf/Noncopyable.h"
-
-namespace blink {
-
-class LocalFrame;
-
-class Deprecation {
- DISALLOW_NEW();
- WTF_MAKE_NONCOPYABLE(Deprecation);
-public:
- Deprecation();
- ~Deprecation();
-
- static void warnOnDeprecatedProperties(const LocalFrame*, CSSPropertyID unresolvedProperty);
-
-protected:
- void suppress(CSSPropertyID unresolvedProperty);
- bool isSuppressed(CSSPropertyID unresolvedProperty);
- // CSSPropertyIDs that aren't deprecated return an empty string.
- static String deprecationMessage(CSSPropertyID unresolvedProperty);
-
- BitVector m_cssPropertyDeprecationBits;
-};
-
-} // namespace blink
-
-#endif // Deprecation_h
« no previous file with comments | « third_party/WebKit/Source/core/css/parser/CSSParserImpl.cpp ('k') | third_party/WebKit/Source/core/frame/Deprecation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698