| OLD | NEW |
| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 void loadEventFired(Frame*); | 211 void loadEventFired(Frame*); |
| 212 | 212 |
| 213 void consoleTime(ExecutionContext*, const String&); | 213 void consoleTime(ExecutionContext*, const String&); |
| 214 void consoleTimeEnd(ExecutionContext*, const String&, ScriptState*); | 214 void consoleTimeEnd(ExecutionContext*, const String&, ScriptState*); |
| 215 void consoleTimeline(ExecutionContext*, const String& title, ScriptState*); | 215 void consoleTimeline(ExecutionContext*, const String& title, ScriptState*); |
| 216 void consoleTimelineEnd(ExecutionContext*, const String& title, ScriptState*
); | 216 void consoleTimelineEnd(ExecutionContext*, const String& title, ScriptState*
); |
| 217 | 217 |
| 218 void didScheduleResourceRequest(Document*, const String& url); | 218 void didScheduleResourceRequest(Document*, const String& url); |
| 219 void willSendRequest(unsigned long, DocumentLoader*, const ResourceRequest&,
const ResourceResponse&, const FetchInitiatorInfo&); | 219 void willSendRequest(unsigned long, DocumentLoader*, const ResourceRequest&,
const ResourceResponse&, const FetchInitiatorInfo&); |
| 220 void didReceiveResourceResponse(Frame*, unsigned long, DocumentLoader*, cons
t ResourceResponse&, ResourceLoader*); | 220 void didReceiveResourceResponse(Frame*, unsigned long, DocumentLoader*, cons
t ResourceResponse&, ResourceLoader*); |
| 221 void didFinishLoading(unsigned long, DocumentLoader*, double monotonicFinish
Time); | 221 void didFinishLoading(unsigned long, DocumentLoader*, double monotonicFinish
Time, int64_t); |
| 222 void didFailLoading(unsigned long identifier, DocumentLoader* loader, const
ResourceError& error); | 222 void didFailLoading(unsigned long identifier, DocumentLoader* loader, const
ResourceError& error); |
| 223 bool willReceiveResourceData(Frame*, unsigned long identifier, int length); | 223 bool willReceiveResourceData(Frame*, unsigned long identifier, int length); |
| 224 void didReceiveResourceData(); | 224 void didReceiveResourceData(); |
| 225 | 225 |
| 226 void didRequestAnimationFrame(Document*, int callbackId); | 226 void didRequestAnimationFrame(Document*, int callbackId); |
| 227 void didCancelAnimationFrame(Document*, int callbackId); | 227 void didCancelAnimationFrame(Document*, int callbackId); |
| 228 bool willFireAnimationFrame(Document*, int callbackId); | 228 bool willFireAnimationFrame(Document*, int callbackId); |
| 229 void didFireAnimationFrame(); | 229 void didFireAnimationFrame(); |
| 230 | 230 |
| 231 void willProcessTask(); | 231 void willProcessTask(); |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 RefPtr<JSONObject> m_gpuTask; | 335 RefPtr<JSONObject> m_gpuTask; |
| 336 unsigned m_styleRecalcElementCounter; | 336 unsigned m_styleRecalcElementCounter; |
| 337 typedef HashMap<ThreadIdentifier, TimelineThreadState> ThreadStateMap; | 337 typedef HashMap<ThreadIdentifier, TimelineThreadState> ThreadStateMap; |
| 338 ThreadStateMap m_threadStates; | 338 ThreadStateMap m_threadStates; |
| 339 bool m_mayEmitFirstPaint; | 339 bool m_mayEmitFirstPaint; |
| 340 }; | 340 }; |
| 341 | 341 |
| 342 } // namespace WebCore | 342 } // namespace WebCore |
| 343 | 343 |
| 344 #endif // !defined(InspectorTimelineAgent_h) | 344 #endif // !defined(InspectorTimelineAgent_h) |
| OLD | NEW |