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

Unified Diff: sky/engine/core/css/StyleSheet.h

Issue 780483002: Remove the CSSOM. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 | « sky/engine/core/css/StyleRuleKeyframes.cpp ('k') | sky/engine/core/css/StyleSheet.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/css/StyleSheet.h
diff --git a/sky/engine/core/css/StyleSheet.h b/sky/engine/core/css/StyleSheet.h
index 138dbf16fc4b053259f649801caf0006167cf7ff..640fde328c11a6880bad27409882ae0d8361673e 100644
--- a/sky/engine/core/css/StyleSheet.h
+++ b/sky/engine/core/css/StyleSheet.h
@@ -21,7 +21,6 @@
#ifndef SKY_ENGINE_CORE_CSS_STYLESHEET_H_
#define SKY_ENGINE_CORE_CSS_STYLESHEET_H_
-#include "sky/engine/bindings/core/v8/ScriptWrappable.h"
#include "sky/engine/core/css/parser/CSSParserMode.h"
#include "sky/engine/platform/heap/Handle.h"
#include "sky/engine/wtf/Forward.h"
@@ -29,14 +28,12 @@
namespace blink {
-class CSSRule;
class KURL;
class MediaList;
class Node;
class StyleSheet;
-class StyleSheet : public RefCounted<StyleSheet>, public ScriptWrappable {
- DEFINE_WRAPPERTYPEINFO();
+class StyleSheet : public RefCounted<StyleSheet> {
public:
StyleSheet()
{
@@ -44,7 +41,6 @@ public:
virtual ~StyleSheet();
virtual Node* ownerNode() const = 0;
- virtual MediaList* media() const { return 0; }
virtual String type() const = 0;
virtual void clearOwnerNode() = 0;
« no previous file with comments | « sky/engine/core/css/StyleRuleKeyframes.cpp ('k') | sky/engine/core/css/StyleSheet.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698