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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl

Issue 2620463002: Show service worker navigation preload requests in DevTools Network tab (Closed)
Patch Set: incorporated falken's comment Created 3 years, 11 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 void willRecalculateStyle([Keep] Document*); 309 void willRecalculateStyle([Keep] Document*);
310 310
311 [Page, Network] 311 [Page, Network]
312 void didRecalculateStyle(Document*); 312 void didRecalculateStyle(Document*);
313 313
314 [Page] 314 [Page]
315 void willRunJavaScriptDialog(LocalFrame* frame, const String& message, Chrom eClient::DialogType dialogType); 315 void willRunJavaScriptDialog(LocalFrame* frame, const String& message, Chrom eClient::DialogType dialogType);
316 316
317 [Page] 317 [Page]
318 void didRunJavaScriptDialog(LocalFrame* frame, bool result); 318 void didRunJavaScriptDialog(LocalFrame* frame, bool result);
319
320 [Network]
321 void didSendNavigationPreload(ExecutionContext*, int identifier, const KURL& requestURL, double timestamp, double wallTime);
322
323 [Network]
324 void didReceiveNavigationPreloadResponse(ExecutionContext*, int identifier, const ResourceResponse&);
325
326 [Network]
327 void didReceiveNavigationPreloadError(ExecutionContext*, int identifier, con st String& errorMessage);
328
329 [Network]
330 void didCompleteNavigationPreload(ExecutionContext*, int identifier);
319 } 331 }
320 332
321 interface InspectorOverrides { 333 interface InspectorOverrides {
322 [CSS] 334 [CSS]
323 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState); 335 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState);
324 336
325 [Worker] 337 [Worker]
326 bool shouldWaitForDebuggerOnWorkerStart(ExecutionContext* context); 338 bool shouldWaitForDebuggerOnWorkerStart(ExecutionContext* context);
327 339
328 [Network] 340 [Network]
329 bool shouldForceCORSPreflight(Document*); 341 bool shouldForceCORSPreflight(Document*);
330 342
331 [Network] 343 [Network]
332 bool shouldBlockRequest(LocalFrame*, const ResourceRequest&); 344 bool shouldBlockRequest(LocalFrame*, const ResourceRequest&);
333 } 345 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698