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

Side by Side Diff: third_party/WebKit/Source/platform/exported/WebURLLoadTiming.cpp

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
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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 double WebURLLoadTiming::sslEnd() const 183 double WebURLLoadTiming::sslEnd() const
184 { 184 {
185 return m_private->sslEnd(); 185 return m_private->sslEnd();
186 } 186 }
187 187
188 void WebURLLoadTiming::setSSLEnd(double end) 188 void WebURLLoadTiming::setSSLEnd(double end)
189 { 189 {
190 m_private->setSslEnd(end); 190 m_private->setSslEnd(end);
191 } 191 }
192 192
193 double WebURLLoadTiming::pushStart() const
194 {
195 return m_private->pushStart();
196 }
197
198 void WebURLLoadTiming::setPushStart(double start)
199 {
200 m_private->setPushStart(start);
201 }
202
203 double WebURLLoadTiming::pushEnd() const
204 {
205 return m_private->pushEnd();
206 }
207
208 void WebURLLoadTiming::setPushEnd(double end)
209 {
210 m_private->setPushEnd(end);
211 }
212
193 WebURLLoadTiming::WebURLLoadTiming(const PassRefPtr<ResourceLoadTiming>& value) 213 WebURLLoadTiming::WebURLLoadTiming(const PassRefPtr<ResourceLoadTiming>& value)
194 : m_private(value) 214 : m_private(value)
195 { 215 {
196 } 216 }
197 217
198 WebURLLoadTiming& WebURLLoadTiming::operator=(const PassRefPtr<ResourceLoadTimin g>& value) 218 WebURLLoadTiming& WebURLLoadTiming::operator=(const PassRefPtr<ResourceLoadTimin g>& value)
199 { 219 {
200 m_private = value; 220 m_private = value;
201 return *this; 221 return *this;
202 } 222 }
203 223
204 WebURLLoadTiming::operator PassRefPtr<ResourceLoadTiming>() const 224 WebURLLoadTiming::operator PassRefPtr<ResourceLoadTiming>() const
205 { 225 {
206 return m_private.get(); 226 return m_private.get();
207 } 227 }
208 228
209 } // namespace blink 229 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/protocol.json ('k') | third_party/WebKit/Source/platform/network/ResourceLoadTiming.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698