| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |