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

Side by Side Diff: third_party/WebKit/public/platform/WebURLLoadTiming.h

Issue 1828203005: Expose SPDY pushes in DevTools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed tests Created 4 years, 8 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 | « third_party/WebKit/Source/platform/network/ResourceLoadTiming.cpp ('k') | no next file » | 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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 91
92 BLINK_PLATFORM_EXPORT double receiveHeadersEnd() const; 92 BLINK_PLATFORM_EXPORT double receiveHeadersEnd() const;
93 BLINK_PLATFORM_EXPORT void setReceiveHeadersEnd(double); 93 BLINK_PLATFORM_EXPORT void setReceiveHeadersEnd(double);
94 94
95 BLINK_PLATFORM_EXPORT double sslStart() const; 95 BLINK_PLATFORM_EXPORT double sslStart() const;
96 BLINK_PLATFORM_EXPORT void setSSLStart(double); 96 BLINK_PLATFORM_EXPORT void setSSLStart(double);
97 97
98 BLINK_PLATFORM_EXPORT double sslEnd() const; 98 BLINK_PLATFORM_EXPORT double sslEnd() const;
99 BLINK_PLATFORM_EXPORT void setSSLEnd(double); 99 BLINK_PLATFORM_EXPORT void setSSLEnd(double);
100 100
101 BLINK_PLATFORM_EXPORT double pushStart() const;
102 BLINK_PLATFORM_EXPORT void setPushStart(double);
103
104 BLINK_PLATFORM_EXPORT double pushEnd() const;
105 BLINK_PLATFORM_EXPORT void setPushEnd(double);
106
101 #if INSIDE_BLINK 107 #if INSIDE_BLINK
102 BLINK_PLATFORM_EXPORT WebURLLoadTiming(const WTF::PassRefPtr<ResourceLoadTim ing>&); 108 BLINK_PLATFORM_EXPORT WebURLLoadTiming(const WTF::PassRefPtr<ResourceLoadTim ing>&);
103 BLINK_PLATFORM_EXPORT WebURLLoadTiming& operator=(const WTF::PassRefPtr<Reso urceLoadTiming>&); 109 BLINK_PLATFORM_EXPORT WebURLLoadTiming& operator=(const WTF::PassRefPtr<Reso urceLoadTiming>&);
104 BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<ResourceLoadTiming>() const; 110 BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<ResourceLoadTiming>() const;
105 #endif 111 #endif
106 112
107 private: 113 private:
108 WebPrivatePtr<ResourceLoadTiming> m_private; 114 WebPrivatePtr<ResourceLoadTiming> m_private;
109 }; 115 };
110 116
111 } // namespace blink 117 } // namespace blink
112 118
113 #endif 119 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/network/ResourceLoadTiming.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698