Changeset 35037 in webkit for trunk/JavaScriptCore/profiler/Profiler.cpp
- Timestamp:
- Jul 7, 2008, 9:01:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/Profiler.cpp
r35022 r35037 104 104 static inline void dispatchFunctionToProfiles(const Vector<RefPtr<Profile> >& profiles, Profile::ProfileFunction function, const CallIdentifier& callIdentifier, unsigned currentPageGroupIdentifier) 105 105 { 106 for (size_t i = 0; i < profiles.size(); ++i) 106 for (size_t i = 0; i < profiles.size(); ++i) { 107 107 if (profiles[i]->pageGroupIdentifier() == currentPageGroupIdentifier) 108 108 (profiles[i].get()->*function)(callIdentifier); 109 } 109 110 } 110 111 … … 164 165 } 165 166 166 } 167 } // namespace KJS
Note:
See TracChangeset
for help on using the changeset viewer.