| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| OLD | NEW |