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

Side by Side Diff: Source/core/inspector/InspectorController.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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 107
108 void resume(); 108 void resume();
109 109
110 void setResourcesDataSizeLimitsFromInternals(int maximumResourcesContentSize , int maximumSingleResourceContentSize); 110 void setResourcesDataSizeLimitsFromInternals(int maximumResourcesContentSize , int maximumSingleResourceContentSize);
111 111
112 InspectorClient* inspectorClient() const { return m_inspectorClient; } 112 InspectorClient* inspectorClient() const { return m_inspectorClient; }
113 113
114 void willProcessTask(); 114 void willProcessTask();
115 void didProcessTask(); 115 void didProcessTask();
116 116
117 void didBeginFrame(); 117 void didBeginFrame(int frameId);
118 void didCancelFrame(); 118 void didCancelFrame();
119 void willComposite(); 119 void willComposite();
120 void didComposite(); 120 void didComposite();
121 121
122 private: 122 private:
123 InspectorController(Page*, InspectorClient*); 123 InspectorController(Page*, InspectorClient*);
124 124
125 friend class PostWorkerNotificationToFrontendTask; 125 friend class PostWorkerNotificationToFrontendTask;
126 friend InstrumentingAgents* instrumentationForPage(Page*); 126 friend InstrumentingAgents* instrumentationForPage(Page*);
127 127
(...skipping 11 matching lines...) Expand all
139 Page* m_page; 139 Page* m_page;
140 InspectorClient* m_inspectorClient; 140 InspectorClient* m_inspectorClient;
141 InspectorAgentRegistry m_agents; 141 InspectorAgentRegistry m_agents;
142 bool m_isUnderTest; 142 bool m_isUnderTest;
143 }; 143 };
144 144
145 } 145 }
146 146
147 147
148 #endif // !defined(InspectorController_h) 148 #endif // !defined(InspectorController_h)
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/InspectorController.cpp » ('j') | public/web/WebDevToolsAgent.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698