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

Side by Side Diff: Source/core/inspector/InspectorProfilerAgent.h

Issue 1008813002: Oilpan: trace non-owned InspectorOverlay references. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
OLDNEW
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
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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698