| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Google Inc. All rights reserved. | 3 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; | 84 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; |
| 85 InspectorFrontend::Profiler* m_frontend; | 85 InspectorFrontend::Profiler* m_frontend; |
| 86 bool m_recordingCPUProfile; | 86 bool m_recordingCPUProfile; |
| 87 class ProfileDescriptor; | 87 class ProfileDescriptor; |
| 88 Vector<ProfileDescriptor> m_startedProfiles; | 88 Vector<ProfileDescriptor> m_startedProfiles; |
| 89 String m_frontendInitiatedProfileId; | 89 String m_frontendInitiatedProfileId; |
| 90 | 90 |
| 91 typedef HashMap<String, double> ProfileNameIdleTimeMap; | 91 typedef HashMap<String, double> ProfileNameIdleTimeMap; |
| 92 ProfileNameIdleTimeMap* m_profileNameIdleTimeMap; | 92 ProfileNameIdleTimeMap* m_profileNameIdleTimeMap; |
| 93 double m_idleStartTime; | 93 double m_idleStartTime; |
| 94 InspectorOverlay* m_overlay; | 94 RawPtrWillBeMember<InspectorOverlay> m_overlay; |
| 95 | 95 |
| 96 void idleStarted(); | 96 void idleStarted(); |
| 97 void idleFinished(); | 97 void idleFinished(); |
| 98 }; | 98 }; |
| 99 | 99 |
| 100 } // namespace blink | 100 } // namespace blink |
| 101 | 101 |
| 102 | 102 |
| 103 #endif // !defined(InspectorProfilerAgent_h) | 103 #endif // !defined(InspectorProfilerAgent_h) |
| OLD | NEW |