OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef PerformanceNavigationTiming_h | 5 #ifndef PerformanceNavigationTiming_h |
6 #define PerformanceNavigationTiming_h | 6 #define PerformanceNavigationTiming_h |
7 | 7 |
8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
9 #include "core/timing/PerformanceResourceTiming.h" | 9 #include "core/timing/PerformanceResourceTiming.h" |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 unsigned short redirectCount, | 25 unsigned short redirectCount, |
26 double domInteractive, | 26 double domInteractive, |
27 double domContentLoadedEventStart, | 27 double domContentLoadedEventStart, |
28 double domContentLoadedEventEnd, | 28 double domContentLoadedEventEnd, |
29 double domComplete, | 29 double domComplete, |
30 NavigationType, | 30 NavigationType, |
31 double redirectStart, | 31 double redirectStart, |
32 double redirectEnd, | 32 double redirectEnd, |
33 double fetchStart, | 33 double fetchStart, |
34 double responseEnd, | 34 double responseEnd, |
35 bool hasCrossOriginRedirect, | 35 bool allowRedirectDetails, |
36 bool hasSameOriginAsPreviousDocument, | 36 bool hasSameOriginAsPreviousDocument, |
37 ResourceLoadTiming*, | 37 ResourceLoadTiming*, |
38 double lastRedirectEndTime, | 38 double lastRedirectEndTime, |
39 double finishTime, | 39 double finishTime, |
40 unsigned long long transferSize, | 40 unsigned long long transferSize, |
41 unsigned long long encodedBodyLength, | 41 unsigned long long encodedBodyLength, |
42 unsigned long long decodedBodyLength, | 42 unsigned long long decodedBodyLength, |
43 bool didReuseConnection); | 43 bool didReuseConnection); |
44 | 44 |
45 double unloadEventStart() const; | 45 double unloadEventStart() const; |
(...skipping 27 matching lines...) Expand all Loading... |
73 unsigned short m_redirectCount; | 73 unsigned short m_redirectCount; |
74 double m_domInteractive; | 74 double m_domInteractive; |
75 double m_domContentLoadedEventStart; | 75 double m_domContentLoadedEventStart; |
76 double m_domContentLoadedEventEnd; | 76 double m_domContentLoadedEventEnd; |
77 double m_domComplete; | 77 double m_domComplete; |
78 NavigationType m_type; | 78 NavigationType m_type; |
79 double m_redirectStart; | 79 double m_redirectStart; |
80 double m_redirectEnd; | 80 double m_redirectEnd; |
81 double m_fetchStart; | 81 double m_fetchStart; |
82 double m_responseEnd; | 82 double m_responseEnd; |
83 bool m_hasCrossOriginRedirect; | 83 bool m_allowRedirectDetails; |
84 bool m_hasSameOriginAsPreviousDocument; | 84 bool m_hasSameOriginAsPreviousDocument; |
85 }; | 85 }; |
86 } // namespace blink | 86 } // namespace blink |
87 | 87 |
88 #endif // PerformanceNavigationTiming_h | 88 #endif // PerformanceNavigationTiming_h |
OLD | NEW |