Changeset 56563 in webkit for trunk/JavaScriptCore/profiler/ProfileGenerator.cpp
- Timestamp:
- Mar 25, 2010, 11:58:17 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/ProfileGenerator.cpp
r54464 r56563 78 78 CString name = callIdentifier.m_name.UTF8String(); 79 79 CString url = callIdentifier.m_url.UTF8String(); 80 JAVASCRIPTCORE_PROFILE_WILL_EXECUTE(m_profileGroup, const_cast<char*>(name. c_str()), const_cast<char*>(url.c_str()), callIdentifier.m_lineNumber);80 JAVASCRIPTCORE_PROFILE_WILL_EXECUTE(m_profileGroup, const_cast<char*>(name.data()), const_cast<char*>(url.data()), callIdentifier.m_lineNumber); 81 81 } 82 82 … … 93 93 CString name = callIdentifier.m_name.UTF8String(); 94 94 CString url = callIdentifier.m_url.UTF8String(); 95 JAVASCRIPTCORE_PROFILE_DID_EXECUTE(m_profileGroup, const_cast<char*>(name. c_str()), const_cast<char*>(url.c_str()), callIdentifier.m_lineNumber);95 JAVASCRIPTCORE_PROFILE_DID_EXECUTE(m_profileGroup, const_cast<char*>(name.data()), const_cast<char*>(url.data()), callIdentifier.m_lineNumber); 96 96 } 97 97
Note:
See TracChangeset
for help on using the changeset viewer.