| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 73 |
| 74 BLINK_PLATFORM_EXPORT double connectStart() const; | 74 BLINK_PLATFORM_EXPORT double connectStart() const; |
| 75 BLINK_PLATFORM_EXPORT void setConnectStart(double); | 75 BLINK_PLATFORM_EXPORT void setConnectStart(double); |
| 76 | 76 |
| 77 BLINK_PLATFORM_EXPORT double connectEnd() const; | 77 BLINK_PLATFORM_EXPORT double connectEnd() const; |
| 78 BLINK_PLATFORM_EXPORT void setConnectEnd(double); | 78 BLINK_PLATFORM_EXPORT void setConnectEnd(double); |
| 79 | 79 |
| 80 BLINK_PLATFORM_EXPORT double workerStart() const; | 80 BLINK_PLATFORM_EXPORT double workerStart() const; |
| 81 BLINK_PLATFORM_EXPORT void setWorkerStart(double); | 81 BLINK_PLATFORM_EXPORT void setWorkerStart(double); |
| 82 | 82 |
| 83 BLINK_PLATFORM_EXPORT double workerReady() const; |
| 84 BLINK_PLATFORM_EXPORT void setWorkerReady(double); |
| 85 |
| 83 BLINK_PLATFORM_EXPORT double sendStart() const; | 86 BLINK_PLATFORM_EXPORT double sendStart() const; |
| 84 BLINK_PLATFORM_EXPORT void setSendStart(double); | 87 BLINK_PLATFORM_EXPORT void setSendStart(double); |
| 85 | 88 |
| 86 BLINK_PLATFORM_EXPORT double sendEnd() const; | 89 BLINK_PLATFORM_EXPORT double sendEnd() const; |
| 87 BLINK_PLATFORM_EXPORT void setSendEnd(double); | 90 BLINK_PLATFORM_EXPORT void setSendEnd(double); |
| 88 | 91 |
| 89 BLINK_PLATFORM_EXPORT double receiveHeadersEnd() const; | 92 BLINK_PLATFORM_EXPORT double receiveHeadersEnd() const; |
| 90 BLINK_PLATFORM_EXPORT void setReceiveHeadersEnd(double); | 93 BLINK_PLATFORM_EXPORT void setReceiveHeadersEnd(double); |
| 91 | 94 |
| 92 BLINK_PLATFORM_EXPORT double sslStart() const; | 95 BLINK_PLATFORM_EXPORT double sslStart() const; |
| 93 BLINK_PLATFORM_EXPORT void setSSLStart(double); | 96 BLINK_PLATFORM_EXPORT void setSSLStart(double); |
| 94 | 97 |
| 95 BLINK_PLATFORM_EXPORT double sslEnd() const; | 98 BLINK_PLATFORM_EXPORT double sslEnd() const; |
| 96 BLINK_PLATFORM_EXPORT void setSSLEnd(double); | 99 BLINK_PLATFORM_EXPORT void setSSLEnd(double); |
| 97 | 100 |
| 98 #if INSIDE_BLINK | 101 #if INSIDE_BLINK |
| 99 BLINK_PLATFORM_EXPORT WebURLLoadTiming(const WTF::PassRefPtr<ResourceLoadTim
ing>&); | 102 BLINK_PLATFORM_EXPORT WebURLLoadTiming(const WTF::PassRefPtr<ResourceLoadTim
ing>&); |
| 100 BLINK_PLATFORM_EXPORT WebURLLoadTiming& operator=(const WTF::PassRefPtr<Reso
urceLoadTiming>&); | 103 BLINK_PLATFORM_EXPORT WebURLLoadTiming& operator=(const WTF::PassRefPtr<Reso
urceLoadTiming>&); |
| 101 BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<ResourceLoadTiming>() const; | 104 BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<ResourceLoadTiming>() const; |
| 102 #endif | 105 #endif |
| 103 | 106 |
| 104 private: | 107 private: |
| 105 WebPrivatePtr<ResourceLoadTiming> m_private; | 108 WebPrivatePtr<ResourceLoadTiming> m_private; |
| 106 }; | 109 }; |
| 107 | 110 |
| 108 } // namespace blink | 111 } // namespace blink |
| 109 | 112 |
| 110 #endif | 113 #endif |
| OLD | NEW |