OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * Copyright (C) 2012 Intel Inc. All rights reserved. | 3 * Copyright (C) 2012 Intel Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 double domainLookupEnd() const; | 67 double domainLookupEnd() const; |
68 double connectStart() const; | 68 double connectStart() const; |
69 double connectEnd() const; | 69 double connectEnd() const; |
70 double secureConnectionStart() const; | 70 double secureConnectionStart() const; |
71 double requestStart() const; | 71 double requestStart() const; |
72 double responseStart() const; | 72 double responseStart() const; |
73 double responseEnd() const; | 73 double responseEnd() const; |
74 | 74 |
75 virtual bool isResource() OVERRIDE { return true; } | 75 virtual bool isResource() OVERRIDE { return true; } |
76 | 76 |
77 virtual void trace(Visitor* visitor) | 77 virtual void trace(Visitor*) OVERRIDE; |
78 { | |
79 PerformanceEntry::trace(visitor); | |
80 } | |
81 | 78 |
82 private: | 79 private: |
83 PerformanceResourceTiming(const ResourceTimingInfo&, Document* requestingDoc
ument, double startTime, double lastRedirectEndTime, bool m_allowTimingDetails,
bool m_allowRedirectDetails); | 80 PerformanceResourceTiming(const ResourceTimingInfo&, Document* requestingDoc
ument, double startTime, double lastRedirectEndTime, bool m_allowTimingDetails,
bool m_allowRedirectDetails); |
84 virtual ~PerformanceResourceTiming(); | 81 virtual ~PerformanceResourceTiming(); |
85 | 82 |
86 AtomicString m_initiatorType; | 83 AtomicString m_initiatorType; |
87 RefPtr<ResourceLoadTiming> m_timing; | 84 RefPtr<ResourceLoadTiming> m_timing; |
88 double m_lastRedirectEndTime; | 85 double m_lastRedirectEndTime; |
89 double m_finishTime; | 86 double m_finishTime; |
90 bool m_didReuseConnection; | 87 bool m_didReuseConnection; |
91 bool m_allowTimingDetails; | 88 bool m_allowTimingDetails; |
92 bool m_allowRedirectDetails; | 89 bool m_allowRedirectDetails; |
93 RefPtr<Document> m_requestingDocument; | 90 RefPtrWillBeMember<Document> m_requestingDocument; |
94 }; | 91 }; |
95 | 92 |
96 } | 93 } |
97 | 94 |
98 #endif // !defined(PerformanceResourceTiming_h) | 95 #endif // !defined(PerformanceResourceTiming_h) |
OLD | NEW |