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

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

Issue 54273005: DevTools: add ids to compositor frames (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 131
132 // Methods called from WebCore. 132 // Methods called from WebCore.
133 bool willCallFunction(ExecutionContext*, const String& scriptName, int scrip tLine); 133 bool willCallFunction(ExecutionContext*, const String& scriptName, int scrip tLine);
134 void didCallFunction(); 134 void didCallFunction();
135 135
136 bool willDispatchEvent(Document* document, const Event& event, DOMWindow* wi ndow, Node* node, const EventPath& eventPath); 136 bool willDispatchEvent(Document* document, const Event& event, DOMWindow* wi ndow, Node* node, const EventPath& eventPath);
137 bool willDispatchEventOnWindow(const Event& event, DOMWindow* window); 137 bool willDispatchEventOnWindow(const Event& event, DOMWindow* window);
138 void didDispatchEvent(); 138 void didDispatchEvent();
139 void didDispatchEventOnWindow(); 139 void didDispatchEventOnWindow();
140 140
141 void didBeginFrame(); 141 void didBeginFrame(int frameId);
142 void didCancelFrame(); 142 void didCancelFrame();
143 143
144 void didInvalidateLayout(Frame*); 144 void didInvalidateLayout(Frame*);
145 bool willLayout(Frame*); 145 bool willLayout(Frame*);
146 void didLayout(RenderObject*); 146 void didLayout(RenderObject*);
147 147
148 void willAutosizeText(RenderObject*); 148 void willAutosizeText(RenderObject*);
149 void didAutosizeText(RenderObject*); 149 void didAutosizeText(RenderObject*);
150 150
151 void didScheduleStyleRecalculation(Document*); 151 void didScheduleStyleRecalculation(Document*);
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 unsigned m_styleRecalcElementCounter; 305 unsigned m_styleRecalcElementCounter;
306 int m_layerTreeId; 306 int m_layerTreeId;
307 RenderImage* m_imageBeingPainted; 307 RenderImage* m_imageBeingPainted;
308 Vector<String> m_consoleTimelines; 308 Vector<String> m_consoleTimelines;
309 RefPtr<TypeBuilder::Array<TypeBuilder::Timeline::TimelineEvent> > m_buffered Events; 309 RefPtr<TypeBuilder::Array<TypeBuilder::Timeline::TimelineEvent> > m_buffered Events;
310 }; 310 };
311 311
312 } // namespace WebCore 312 } // namespace WebCore
313 313
314 #endif // !defined(InspectorTimelineAgent_h) 314 #endif // !defined(InspectorTimelineAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698