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

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

Issue 19007004: Get rid of CSSStyleSheet special casing in the bindings generator (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
« no previous file with comments | « Source/bindings/scripts/deprecated_code_generator_v8.pm ('k') | Source/core/css/StyleSheet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSStyleSheet.h
diff --git a/Source/core/css/CSSStyleSheet.h b/Source/core/css/CSSStyleSheet.h
index 37f83abc3d26d34a8a4e05c9465567dec21ba409..9cdac7b7115d5fb1fe102ccc08c3d0a7f57828bd 100644
--- a/Source/core/css/CSSStyleSheet.h
+++ b/Source/core/css/CSSStyleSheet.h
@@ -73,7 +73,7 @@ public:
CSSRule* item(unsigned index);
virtual void clearOwnerNode() OVERRIDE { didMutate(); m_ownerNode = 0; }
- virtual CSSImportRule* ownerRule() const OVERRIDE { return m_ownerRule; }
+ virtual CSSRule* ownerRule() const OVERRIDE { return m_ownerRule; }
virtual KURL baseURL() const OVERRIDE;
virtual bool isLoading() const OVERRIDE;
@@ -124,7 +124,7 @@ private:
RefPtr<MediaQuerySet> m_mediaQueries;
Node* m_ownerNode;
- CSSImportRule* m_ownerRule;
+ CSSRule* m_ownerRule;
TextPosition m_startPosition;
« no previous file with comments | « Source/bindings/scripts/deprecated_code_generator_v8.pm ('k') | Source/core/css/StyleSheet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698