| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 double WebURLLoadTiming::workerStart() const | 124 double WebURLLoadTiming::workerStart() const |
| 125 { | 125 { |
| 126 return m_private->workerStart(); | 126 return m_private->workerStart(); |
| 127 } | 127 } |
| 128 | 128 |
| 129 void WebURLLoadTiming::setWorkerStart(double start) | 129 void WebURLLoadTiming::setWorkerStart(double start) |
| 130 { | 130 { |
| 131 m_private->setWorkerStart(start); | 131 m_private->setWorkerStart(start); |
| 132 } | 132 } |
| 133 | 133 |
| 134 double WebURLLoadTiming::workerReady() const |
| 135 { |
| 136 return m_private->workerReady(); |
| 137 } |
| 138 |
| 139 void WebURLLoadTiming::setWorkerReady(double ready) |
| 140 { |
| 141 m_private->setWorkerReady(ready); |
| 142 } |
| 143 |
| 134 double WebURLLoadTiming::sendStart() const | 144 double WebURLLoadTiming::sendStart() const |
| 135 { | 145 { |
| 136 return m_private->sendStart(); | 146 return m_private->sendStart(); |
| 137 } | 147 } |
| 138 | 148 |
| 139 void WebURLLoadTiming::setSendStart(double start) | 149 void WebURLLoadTiming::setSendStart(double start) |
| 140 { | 150 { |
| 141 m_private->setSendStart(start); | 151 m_private->setSendStart(start); |
| 142 } | 152 } |
| 143 | 153 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 m_private = value; | 201 m_private = value; |
| 192 return *this; | 202 return *this; |
| 193 } | 203 } |
| 194 | 204 |
| 195 WebURLLoadTiming::operator PassRefPtr<ResourceLoadTiming>() const | 205 WebURLLoadTiming::operator PassRefPtr<ResourceLoadTiming>() const |
| 196 { | 206 { |
| 197 return m_private.get(); | 207 return m_private.get(); |
| 198 } | 208 } |
| 199 | 209 |
| 200 } // namespace blink | 210 } // namespace blink |
| OLD | NEW |