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

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

Issue 301233010: Oilpan: use transition types for remaining RefPtr<Document>s in dom/. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Have Document weakly track its attached Ranges Created 6 years, 6 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/core/dom/TreeScopeTest.cpp ('k') | Source/core/timing/PerformanceResourceTiming.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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
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)
OLDNEW
« no previous file with comments | « Source/core/dom/TreeScopeTest.cpp ('k') | Source/core/timing/PerformanceResourceTiming.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698