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

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

Issue 1159663002: Refactoring timing info for ServiceWorker controlled requests [1/3] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 BLINK_PLATFORM_EXPORT double dnsEnd() const; 71 BLINK_PLATFORM_EXPORT double dnsEnd() const;
72 BLINK_PLATFORM_EXPORT void setDNSEnd(double); 72 BLINK_PLATFORM_EXPORT void setDNSEnd(double);
73 73
74 BLINK_PLATFORM_EXPORT double connectStart() const; 74 BLINK_PLATFORM_EXPORT double connectStart() const;
75 BLINK_PLATFORM_EXPORT void setConnectStart(double); 75 BLINK_PLATFORM_EXPORT void setConnectStart(double);
76 76
77 BLINK_PLATFORM_EXPORT double connectEnd() const; 77 BLINK_PLATFORM_EXPORT double connectEnd() const;
78 BLINK_PLATFORM_EXPORT void setConnectEnd(double); 78 BLINK_PLATFORM_EXPORT void setConnectEnd(double);
79 79
80 BLINK_PLATFORM_EXPORT double workerStart() const;
81 BLINK_PLATFORM_EXPORT void setWorkerStart(double);
82
83 // TODO(ksakamoto): Deprecated, remove them. crbug.com/465640
80 BLINK_PLATFORM_EXPORT double serviceWorkerFetchStart() const; 84 BLINK_PLATFORM_EXPORT double serviceWorkerFetchStart() const;
81 BLINK_PLATFORM_EXPORT void setServiceWorkerFetchStart(double); 85 BLINK_PLATFORM_EXPORT void setServiceWorkerFetchStart(double);
82 86
87 // TODO(ksakamoto): Deprecated, remove them. crbug.com/465640
83 BLINK_PLATFORM_EXPORT double serviceWorkerFetchReady() const; 88 BLINK_PLATFORM_EXPORT double serviceWorkerFetchReady() const;
84 BLINK_PLATFORM_EXPORT void setServiceWorkerFetchReady(double); 89 BLINK_PLATFORM_EXPORT void setServiceWorkerFetchReady(double);
85 90
91 // TODO(ksakamoto): Deprecated, remove them. crbug.com/465640
86 BLINK_PLATFORM_EXPORT double serviceWorkerFetchEnd() const; 92 BLINK_PLATFORM_EXPORT double serviceWorkerFetchEnd() const;
87 BLINK_PLATFORM_EXPORT void setServiceWorkerFetchEnd(double); 93 BLINK_PLATFORM_EXPORT void setServiceWorkerFetchEnd(double);
88 94
89 BLINK_PLATFORM_EXPORT double sendStart() const; 95 BLINK_PLATFORM_EXPORT double sendStart() const;
90 BLINK_PLATFORM_EXPORT void setSendStart(double); 96 BLINK_PLATFORM_EXPORT void setSendStart(double);
91 97
92 BLINK_PLATFORM_EXPORT double sendEnd() const; 98 BLINK_PLATFORM_EXPORT double sendEnd() const;
93 BLINK_PLATFORM_EXPORT void setSendEnd(double); 99 BLINK_PLATFORM_EXPORT void setSendEnd(double);
94 100
95 BLINK_PLATFORM_EXPORT double receiveHeadersEnd() const; 101 BLINK_PLATFORM_EXPORT double receiveHeadersEnd() const;
(...skipping 11 matching lines...) Expand all
107 BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<ResourceLoadTiming>() const; 113 BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<ResourceLoadTiming>() const;
108 #endif 114 #endif
109 115
110 private: 116 private:
111 WebPrivatePtr<ResourceLoadTiming> m_private; 117 WebPrivatePtr<ResourceLoadTiming> m_private;
112 }; 118 };
113 119
114 } // namespace blink 120 } // namespace blink
115 121
116 #endif 122 #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