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

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

Issue 214503002: [oilpan]: Move DOMWindowCSS to the oilpan heap using transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 9 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/CSS.idl ('k') | Source/core/css/DOMWindowCSS.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/DOMWindowCSS.h
diff --git a/Source/core/css/DOMWindowCSS.h b/Source/core/css/DOMWindowCSS.h
index e6c6d19b2dcfb39381a6f82f5c4ddc388ef5d142..3d845bbfb9e452d6cac2c625d2bdfd2c5dfc34fe 100644
--- a/Source/core/css/DOMWindowCSS.h
+++ b/Source/core/css/DOMWindowCSS.h
@@ -30,19 +30,22 @@
#ifndef DOMWindowCSS_h
#define DOMWindowCSS_h
+#include "heap/Handle.h"
#include "wtf/Forward.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
namespace WebCore {
-class DOMWindowCSS : public RefCounted<DOMWindowCSS> {
+class DOMWindowCSS : public RefCountedWillBeGarbageCollected<DOMWindowCSS> {
public:
- static PassRefPtr<DOMWindowCSS> create();
+ static PassRefPtrWillBeRawPtr<DOMWindowCSS> create();
bool supports(const String& property, const String& value) const;
bool supports(const String& conditionText) const;
+ void trace(Visitor*) { }
+
private:
DOMWindowCSS()
{
« no previous file with comments | « Source/core/css/CSS.idl ('k') | Source/core/css/DOMWindowCSS.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698