| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 double fetchStart() const; | 62 double fetchStart() const; |
| 63 double domainLookupStart() const; | 63 double domainLookupStart() const; |
| 64 double domainLookupEnd() const; | 64 double domainLookupEnd() const; |
| 65 double connectStart() const; | 65 double connectStart() const; |
| 66 double connectEnd() const; | 66 double connectEnd() const; |
| 67 double secureConnectionStart() const; | 67 double secureConnectionStart() const; |
| 68 double requestStart() const; | 68 double requestStart() const; |
| 69 double responseStart() const; | 69 double responseStart() const; |
| 70 double responseEnd() const; | 70 double responseEnd() const; |
| 71 | 71 |
| 72 protected: |
| 73 void buildJSONValue(V8ObjectBuilder&) const override; |
| 74 |
| 72 private: | 75 private: |
| 73 PerformanceResourceTiming(const ResourceTimingInfo&, double timeOrigin, doub
le startTime, double lastRedirectEndTime, bool m_allowTimingDetails, bool m_allo
wRedirectDetails); | 76 PerformanceResourceTiming(const ResourceTimingInfo&, double timeOrigin, doub
le startTime, double lastRedirectEndTime, bool m_allowTimingDetails, bool m_allo
wRedirectDetails); |
| 74 ~PerformanceResourceTiming() override; | 77 ~PerformanceResourceTiming() override; |
| 75 | 78 |
| 76 double workerReady() const; | 79 double workerReady() const; |
| 77 | 80 |
| 78 AtomicString m_initiatorType; | 81 AtomicString m_initiatorType; |
| 79 double m_timeOrigin; | 82 double m_timeOrigin; |
| 80 RefPtr<ResourceLoadTiming> m_timing; | 83 RefPtr<ResourceLoadTiming> m_timing; |
| 81 double m_lastRedirectEndTime; | 84 double m_lastRedirectEndTime; |
| 82 double m_finishTime; | 85 double m_finishTime; |
| 83 bool m_didReuseConnection; | 86 bool m_didReuseConnection; |
| 84 bool m_allowTimingDetails; | 87 bool m_allowTimingDetails; |
| 85 bool m_allowRedirectDetails; | 88 bool m_allowRedirectDetails; |
| 86 }; | 89 }; |
| 87 | 90 |
| 88 } // namespace blink | 91 } // namespace blink |
| 89 | 92 |
| 90 #endif // PerformanceResourceTiming_h | 93 #endif // PerformanceResourceTiming_h |
| OLD | NEW |