OLD | NEW |
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 Loading... |
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 |
OLD | NEW |