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

Side by Side Diff: public/platform/WebURLLoadTiming.h

Issue 515583005: Add ServiceWorker timing information on the popup panel in DevTools's Network tab (1/2) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 3 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
« no previous file with comments | « Source/platform/network/ResourceLoadTiming.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 71
72 BLINK_PLATFORM_EXPORT double dnsEnd() const; 72 BLINK_PLATFORM_EXPORT double dnsEnd() const;
73 BLINK_PLATFORM_EXPORT void setDNSEnd(double); 73 BLINK_PLATFORM_EXPORT void setDNSEnd(double);
74 74
75 BLINK_PLATFORM_EXPORT double connectStart() const; 75 BLINK_PLATFORM_EXPORT double connectStart() const;
76 BLINK_PLATFORM_EXPORT void setConnectStart(double); 76 BLINK_PLATFORM_EXPORT void setConnectStart(double);
77 77
78 BLINK_PLATFORM_EXPORT double connectEnd() const; 78 BLINK_PLATFORM_EXPORT double connectEnd() const;
79 BLINK_PLATFORM_EXPORT void setConnectEnd(double); 79 BLINK_PLATFORM_EXPORT void setConnectEnd(double);
80 80
81 BLINK_PLATFORM_EXPORT double serviceWorkerFetchStart() const;
82 BLINK_PLATFORM_EXPORT void setServiceWorkerFetchStart(double);
83
84 BLINK_PLATFORM_EXPORT double serviceWorkerFetchReady() const;
85 BLINK_PLATFORM_EXPORT void setServiceWorkerFetchReady(double);
86
87 BLINK_PLATFORM_EXPORT double serviceWorkerFetchEnd() const;
88 BLINK_PLATFORM_EXPORT void setServiceWorkerFetchEnd(double);
89
81 BLINK_PLATFORM_EXPORT double sendStart() const; 90 BLINK_PLATFORM_EXPORT double sendStart() const;
82 BLINK_PLATFORM_EXPORT void setSendStart(double); 91 BLINK_PLATFORM_EXPORT void setSendStart(double);
83 92
84 BLINK_PLATFORM_EXPORT double sendEnd() const; 93 BLINK_PLATFORM_EXPORT double sendEnd() const;
85 BLINK_PLATFORM_EXPORT void setSendEnd(double); 94 BLINK_PLATFORM_EXPORT void setSendEnd(double);
86 95
87 BLINK_PLATFORM_EXPORT double receiveHeadersEnd() const; 96 BLINK_PLATFORM_EXPORT double receiveHeadersEnd() const;
88 BLINK_PLATFORM_EXPORT void setReceiveHeadersEnd(double); 97 BLINK_PLATFORM_EXPORT void setReceiveHeadersEnd(double);
89 98
90 BLINK_PLATFORM_EXPORT double sslStart() const; 99 BLINK_PLATFORM_EXPORT double sslStart() const;
91 BLINK_PLATFORM_EXPORT void setSSLStart(double); 100 BLINK_PLATFORM_EXPORT void setSSLStart(double);
92 101
93 BLINK_PLATFORM_EXPORT double sslEnd() const; 102 BLINK_PLATFORM_EXPORT double sslEnd() const;
94 BLINK_PLATFORM_EXPORT void setSSLEnd(double); 103 BLINK_PLATFORM_EXPORT void setSSLEnd(double);
95 104
96 #if INSIDE_BLINK 105 #if INSIDE_BLINK
97 BLINK_PLATFORM_EXPORT WebURLLoadTiming(const WTF::PassRefPtr<ResourceLoadTim ing>&); 106 BLINK_PLATFORM_EXPORT WebURLLoadTiming(const WTF::PassRefPtr<ResourceLoadTim ing>&);
98 BLINK_PLATFORM_EXPORT WebURLLoadTiming& operator=(const WTF::PassRefPtr<Reso urceLoadTiming>&); 107 BLINK_PLATFORM_EXPORT WebURLLoadTiming& operator=(const WTF::PassRefPtr<Reso urceLoadTiming>&);
99 BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<ResourceLoadTiming>() const; 108 BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<ResourceLoadTiming>() const;
100 #endif 109 #endif
101 110
102 private: 111 private:
103 WebPrivatePtr<ResourceLoadTiming> m_private; 112 WebPrivatePtr<ResourceLoadTiming> m_private;
104 }; 113 };
105 114
106 } // namespace blink 115 } // namespace blink
107 116
108 #endif 117 #endif
OLDNEW
« no previous file with comments | « Source/platform/network/ResourceLoadTiming.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698