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

Unified Diff: Source/core/css/MediaQuery.h

Issue 16208004: No need to store invalid media queries. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 6 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
« no previous file with comments | « Source/core/css/MediaList.cpp ('k') | Source/core/css/MediaQuery.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/MediaQuery.h
diff --git a/Source/core/css/MediaQuery.h b/Source/core/css/MediaQuery.h
index 13653a09505c7ff3c8e3ea2b5508c6a9c73f8500..2ff81846cf82c62ebb1b08bf7f9761811f9cc1c1 100644
--- a/Source/core/css/MediaQuery.h
+++ b/Source/core/css/MediaQuery.h
@@ -54,7 +54,6 @@ public:
String mediaType() const { return m_mediaType; }
bool operator==(const MediaQuery& other) const;
String cssText() const;
- bool ignored() const { return m_ignored; }
PassOwnPtr<MediaQuery> copy() const { return adoptPtr(new MediaQuery(*this)); }
@@ -66,7 +65,6 @@ private:
Restrictor m_restrictor;
String m_mediaType;
OwnPtr<ExpressionVector> m_expressions;
- bool m_ignored;
String m_serializationCache;
String serialize() const;
« no previous file with comments | « Source/core/css/MediaList.cpp ('k') | Source/core/css/MediaQuery.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698