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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h

Issue 1434383002: Oilpan: move InspectedFrames to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix incorrect OwnPtr<> use Created 5 years, 1 month 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 2014 The Chromium Authors. All rights reserved. 2 * Copyright 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 #ifndef InspectorTracingAgent_h 7 #ifndef InspectorTracingAgent_h
8 #define InspectorTracingAgent_h 8 #define InspectorTracingAgent_h
9 9
10 #include "core/CoreExport.h" 10 #include "core/CoreExport.h"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 private: 52 private:
53 InspectorTracingAgent(Client*, InspectorWorkerAgent*, InspectedFrames*); 53 InspectorTracingAgent(Client*, InspectorWorkerAgent*, InspectedFrames*);
54 54
55 void emitMetadataEvents(); 55 void emitMetadataEvents();
56 void resetSessionId(); 56 void resetSessionId();
57 String sessionId(); 57 String sessionId();
58 58
59 int m_layerTreeId; 59 int m_layerTreeId;
60 Client* m_client; 60 Client* m_client;
61 RawPtrWillBeMember<InspectorWorkerAgent> m_workerAgent; 61 RawPtrWillBeMember<InspectorWorkerAgent> m_workerAgent;
62 InspectedFrames* m_inspectedFrames; 62 RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
63 }; 63 };
64 64
65 } // namespace blink 65 } // namespace blink
66 66
67 #endif // InspectorTracingAgent_h 67 #endif // InspectorTracingAgent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698