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

Side by Side Diff: sky/engine/core/dom/DOMSettableTokenList.h

Issue 709203002: Remove more oilpan. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « sky/engine/core/css/resolver/StyleResolver.cpp ('k') | sky/engine/core/dom/DOMTokenList.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 24 matching lines...) Expand all
35 35
36 class ExceptionState; 36 class ExceptionState;
37 37
38 class DOMSettableTokenList final 38 class DOMSettableTokenList final
39 : public DOMTokenList 39 : public DOMTokenList
40 #if !ENABLE(OILPAN) 40 #if !ENABLE(OILPAN)
41 , public RefCounted<DOMSettableTokenList> 41 , public RefCounted<DOMSettableTokenList>
42 #endif 42 #endif
43 { 43 {
44 DEFINE_WRAPPERTYPEINFO(); 44 DEFINE_WRAPPERTYPEINFO();
45 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; 45 WTF_MAKE_FAST_ALLOCATED;
46 public: 46 public:
47 static PassRefPtr<DOMSettableTokenList> create() 47 static PassRefPtr<DOMSettableTokenList> create()
48 { 48 {
49 return adoptRef(new DOMSettableTokenList()); 49 return adoptRef(new DOMSettableTokenList());
50 } 50 }
51 virtual ~DOMSettableTokenList(); 51 virtual ~DOMSettableTokenList();
52 52
53 #if !ENABLE(OILPAN) 53 #if !ENABLE(OILPAN)
54 virtual void ref() override { RefCounted<DOMSettableTokenList>::ref(); } 54 virtual void ref() override { RefCounted<DOMSettableTokenList>::ref(); }
55 virtual void deref() override { RefCounted<DOMSettableTokenList>::deref(); } 55 virtual void deref() override { RefCounted<DOMSettableTokenList>::deref(); }
(...skipping 18 matching lines...) Expand all
74 virtual bool containsInternal(const AtomicString&) const override; 74 virtual bool containsInternal(const AtomicString&) const override;
75 virtual void removeInternal(const AtomicString&) override; 75 virtual void removeInternal(const AtomicString&) override;
76 76
77 AtomicString m_value; 77 AtomicString m_value;
78 SpaceSplitString m_tokens; 78 SpaceSplitString m_tokens;
79 }; 79 };
80 80
81 } // namespace blink 81 } // namespace blink
82 82
83 #endif // DOMSettableTokenList_h 83 #endif // DOMSettableTokenList_h
OLDNEW
« no previous file with comments | « sky/engine/core/css/resolver/StyleResolver.cpp ('k') | sky/engine/core/dom/DOMTokenList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698