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

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

Issue 1304043002: Make classes and structures in core/dom fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « no previous file | Source/core/dom/Attribute.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) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 static void init(AXObjectCacheCreateFunction); 140 static void init(AXObjectCacheCreateFunction);
141 141
142 protected: 142 protected:
143 AXObjectCache(); 143 AXObjectCache();
144 144
145 private: 145 private:
146 static AXObjectCacheCreateFunction m_createFunction; 146 static AXObjectCacheCreateFunction m_createFunction;
147 }; 147 };
148 148
149 class CORE_EXPORT ScopedAXObjectCache { 149 class CORE_EXPORT ScopedAXObjectCache {
150 WTF_MAKE_FAST_ALLOCATED(ScopedAXObjectCache);
150 WTF_MAKE_NONCOPYABLE(ScopedAXObjectCache); 151 WTF_MAKE_NONCOPYABLE(ScopedAXObjectCache);
151 public: 152 public:
152 static PassOwnPtr<ScopedAXObjectCache> create(Document&); 153 static PassOwnPtr<ScopedAXObjectCache> create(Document&);
153 ~ScopedAXObjectCache(); 154 ~ScopedAXObjectCache();
154 155
155 AXObjectCache* get(); 156 AXObjectCache* get();
156 157
157 private: 158 private:
158 explicit ScopedAXObjectCache(Document&); 159 explicit ScopedAXObjectCache(Document&);
159 160
160 RefPtrWillBePersistent<Document> m_document; 161 RefPtrWillBePersistent<Document> m_document;
161 OwnPtrWillBePersistent<AXObjectCache> m_cache; 162 OwnPtrWillBePersistent<AXObjectCache> m_cache;
162 }; 163 };
163 164
164 } 165 }
165 166
166 #endif 167 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/Attribute.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698