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

Unified Diff: Source/core/dom/Document.h

Issue 397733004: Allow assertions to be enabled in Blink Release builds. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed config.gni. Minor cleanups. Created 6 years, 5 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: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 601792e84557023048ea8e986e1d36f1fa1bbb7b..42672135abc979719061d63d3cb00a56807f6f2b 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -277,9 +277,6 @@ public:
const ViewportDescription& viewportDescription() const { return m_viewportDescription; }
Length viewportDefaultMinWidth() const { return m_viewportDefaultMinWidth; }
-#ifndef NDEBUG
- bool didDispatchViewportPropertiesChanged() const { return m_didDispatchViewportPropertiesChanged; }
Ken Russell (switch to Gerrit) 2014/07/15 23:25:34 This method was unreferenced.
-#endif
bool hasLegacyViewportTag() const { return m_legacyViewportDescription.isLegacyViewportType(); }
void setReferrerPolicy(ReferrerPolicy);
@@ -1362,10 +1359,6 @@ private:
OwnPtrWillBeMember<ElementDataCache> m_elementDataCache;
-#ifndef NDEBUG
- bool m_didDispatchViewportPropertiesChanged;
-#endif
-
typedef HashMap<AtomicString, OwnPtr<Locale> > LocaleIdentifierToLocaleMap;
LocaleIdentifierToLocaleMap m_localeCache;

Powered by Google App Engine
This is Rietveld 408576698