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

Unified Diff: third_party/WebKit/Source/core/page/Page.h

Issue 1585383003: 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/page/Page.h
diff --git a/third_party/WebKit/Source/core/page/Page.h b/third_party/WebKit/Source/core/page/Page.h
index 3293c4717b51ab50429738961a745bed8f8f5846..084890f253d68b70584e9991a2f6f25532d5ca11 100644
--- a/third_party/WebKit/Source/core/page/Page.h
+++ b/third_party/WebKit/Source/core/page/Page.h
@@ -23,6 +23,7 @@
#include "core/CoreExport.h"
#include "core/dom/ViewportDescription.h"
+#include "core/frame/DeprecationHelper.h"
#include "core/frame/LocalFrame.h"
#include "core/frame/OriginsUsingFeatures.h"
#include "core/frame/SettingsDelegate.h"
@@ -162,6 +163,7 @@ public:
Settings& settings() const { return *m_settings; }
UseCounter& useCounter() { return m_useCounter; }
+ DeprecationHelper& deprecationHelper() { return m_deprecationHelper; }
OriginsUsingFeatures& originsUsingFeatures() { return m_originsUsingFeatures; }
void setTabKeyCyclesThroughElements(bool b) { m_tabKeyCyclesThroughElements = b; }
@@ -266,6 +268,7 @@ private:
OwnPtrWillBeMember<ValidationMessageClient> m_validationMessageClient;
UseCounter m_useCounter;
+ DeprecationHelper m_deprecationHelper;
OriginsUsingFeatures m_originsUsingFeatures;
bool m_openedByDOM;

Powered by Google App Engine
This is Rietveld 408576698