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

Side by Side Diff: Source/core/dom/DOMTokenList.h

Issue 23604030: Move DOMSettableTokenList / DOMTokenList to dom/ folder (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/DOMSettableTokenList.idl ('k') | Source/core/dom/DOMTokenList.cpp » ('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 23 matching lines...) Expand all
34 class Element; 34 class Element;
35 class ExceptionState; 35 class ExceptionState;
36 36
37 class DOMTokenList : public ScriptWrappable { 37 class DOMTokenList : public ScriptWrappable {
38 WTF_MAKE_NONCOPYABLE(DOMTokenList); WTF_MAKE_FAST_ALLOCATED; 38 WTF_MAKE_NONCOPYABLE(DOMTokenList); WTF_MAKE_FAST_ALLOCATED;
39 public: 39 public:
40 DOMTokenList() 40 DOMTokenList()
41 { 41 {
42 ScriptWrappable::init(this); 42 ScriptWrappable::init(this);
43 } 43 }
44 virtual ~DOMTokenList() {}; 44 virtual ~DOMTokenList() { };
45 45
46 virtual void ref() = 0; 46 virtual void ref() = 0;
47 virtual void deref() = 0; 47 virtual void deref() = 0;
48 48
49 virtual unsigned length() const = 0; 49 virtual unsigned length() const = 0;
50 virtual const AtomicString item(unsigned index) const = 0; 50 virtual const AtomicString item(unsigned index) const = 0;
51 51
52 bool contains(const AtomicString&, ExceptionState&) const; 52 bool contains(const AtomicString&, ExceptionState&) const;
53 virtual void add(const Vector<String>&, ExceptionState&); 53 virtual void add(const Vector<String>&, ExceptionState&);
54 void add(const AtomicString&, ExceptionState&); 54 void add(const AtomicString&, ExceptionState&);
(...skipping 18 matching lines...) Expand all
73 static bool validateTokens(const Vector<String>&, ExceptionState&); 73 static bool validateTokens(const Vector<String>&, ExceptionState&);
74 static String addToken(const AtomicString&, const AtomicString&); 74 static String addToken(const AtomicString&, const AtomicString&);
75 static String addTokens(const AtomicString&, const Vector<String>&); 75 static String addTokens(const AtomicString&, const Vector<String>&);
76 static String removeToken(const AtomicString&, const AtomicString&); 76 static String removeToken(const AtomicString&, const AtomicString&);
77 static String removeTokens(const AtomicString&, const Vector<String>&); 77 static String removeTokens(const AtomicString&, const Vector<String>&);
78 }; 78 };
79 79
80 } // namespace WebCore 80 } // namespace WebCore
81 81
82 #endif // DOMTokenList_h 82 #endif // DOMTokenList_h
OLDNEW
« no previous file with comments | « Source/core/dom/DOMSettableTokenList.idl ('k') | Source/core/dom/DOMTokenList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698