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

Side by Side Diff: Source/core/timing/PerformanceResourceTiming.cpp

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/timing/PerformanceNavigation.cpp ('k') | Source/core/timing/PerformanceTiming.cpp » ('j') | 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) 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 : PerformanceEntry(info.initialRequest().url().string(), "resource", monoton icTimeToDocumentMilliseconds(requestingDocument, startTime), monotonicTimeToDocu mentMilliseconds(requestingDocument, info.loadFinishTime())) 51 : PerformanceEntry(info.initialRequest().url().string(), "resource", monoton icTimeToDocumentMilliseconds(requestingDocument, startTime), monotonicTimeToDocu mentMilliseconds(requestingDocument, info.loadFinishTime()))
52 , m_initiatorType(info.initiatorType()) 52 , m_initiatorType(info.initiatorType())
53 , m_timing(info.finalResponse().resourceLoadTiming()) 53 , m_timing(info.finalResponse().resourceLoadTiming())
54 , m_lastRedirectEndTime(lastRedirectEndTime) 54 , m_lastRedirectEndTime(lastRedirectEndTime)
55 , m_finishTime(info.loadFinishTime()) 55 , m_finishTime(info.loadFinishTime())
56 , m_didReuseConnection(info.finalResponse().connectionReused()) 56 , m_didReuseConnection(info.finalResponse().connectionReused())
57 , m_allowTimingDetails(allowTimingDetails) 57 , m_allowTimingDetails(allowTimingDetails)
58 , m_allowRedirectDetails(allowRedirectDetails) 58 , m_allowRedirectDetails(allowRedirectDetails)
59 , m_requestingDocument(requestingDocument) 59 , m_requestingDocument(requestingDocument)
60 { 60 {
61 ScriptWrappable::init(this);
62 } 61 }
63 62
64 PerformanceResourceTiming::~PerformanceResourceTiming() 63 PerformanceResourceTiming::~PerformanceResourceTiming()
65 { 64 {
66 } 65 }
67 66
68 AtomicString PerformanceResourceTiming::initiatorType() const 67 AtomicString PerformanceResourceTiming::initiatorType() const
69 { 68 {
70 return m_initiatorType; 69 return m_initiatorType;
71 } 70 }
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 return monotonicTimeToDocumentMilliseconds(m_requestingDocument.get(), m_fin ishTime); 190 return monotonicTimeToDocumentMilliseconds(m_requestingDocument.get(), m_fin ishTime);
192 } 191 }
193 192
194 void PerformanceResourceTiming::trace(Visitor* visitor) 193 void PerformanceResourceTiming::trace(Visitor* visitor)
195 { 194 {
196 visitor->trace(m_requestingDocument); 195 visitor->trace(m_requestingDocument);
197 PerformanceEntry::trace(visitor); 196 PerformanceEntry::trace(visitor);
198 } 197 }
199 198
200 } // namespace blink 199 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/timing/PerformanceNavigation.cpp ('k') | Source/core/timing/PerformanceTiming.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698