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

Side by Side Diff: Source/platform/Supplementable.h

Issue 916033002: Oilpan: Move LifecycleNotifier's hierarchy to Oilpan's heap Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/platform/LifecycleObserver.h ('k') | no next file » | 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) 2012 Google, Inc. All Rights Reserved. 2 * Copyright (C) 2012 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 145
146 static SupplementBase<T, isGarbageCollected>* from(SupplementableBase<T, isG arbageCollected>* host, const char* key) 146 static SupplementBase<T, isGarbageCollected>* from(SupplementableBase<T, isG arbageCollected>* host, const char* key)
147 { 147 {
148 return host ? host->requireSupplement(key) : 0; 148 return host ? host->requireSupplement(key) : 0;
149 } 149 }
150 }; 150 };
151 151
152 template<typename T, bool isGarbageCollected> 152 template<typename T, bool isGarbageCollected>
153 class SupplementableTracing; 153 class SupplementableTracing;
154 154
155 // Using a virtual inheritance to resolve a diamond inheritance
156 // in ExecutionContext.
155 template<typename T> 157 template<typename T>
156 class SupplementableTracing<T, true> : public GarbageCollectedMixin { 158 class SupplementableTracing<T, true> : public virtual GarbageCollectedMixin {
157 public: 159 public:
158 virtual void trace(Visitor* visitor) 160 virtual void trace(Visitor* visitor)
159 { 161 {
160 visitor->trace(m_supplements); 162 visitor->trace(m_supplements);
161 } 163 }
162 164
163 protected: 165 protected:
164 typedef HeapHashMap<const char*, Member<SupplementBase<T, true>>, PtrHash<co nst char*>> SupplementMap; 166 typedef HeapHashMap<const char*, Member<SupplementBase<T, true>>, PtrHash<co nst char*>> SupplementMap;
165 SupplementMap m_supplements; 167 SupplementMap m_supplements;
166 }; 168 };
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 }; 231 };
230 232
231 template<typename T> 233 template<typename T>
232 struct ThreadingTrait<SupplementableBase<T, true>> { 234 struct ThreadingTrait<SupplementableBase<T, true>> {
233 static const ThreadAffinity Affinity = ThreadingTrait<T>::Affinity; 235 static const ThreadAffinity Affinity = ThreadingTrait<T>::Affinity;
234 }; 236 };
235 237
236 } // namespace blink 238 } // namespace blink
237 239
238 #endif // Supplementable_h 240 #endif // Supplementable_h
OLDNEW
« no previous file with comments | « Source/platform/LifecycleObserver.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698