Chromium Code Reviews| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 71 | 71 |
| 72 BLINK_PLATFORM_EXPORT double dnsEnd() const; | 72 BLINK_PLATFORM_EXPORT double dnsEnd() const; |
| 73 BLINK_PLATFORM_EXPORT void setDNSEnd(double); | 73 BLINK_PLATFORM_EXPORT void setDNSEnd(double); |
| 74 | 74 |
| 75 BLINK_PLATFORM_EXPORT double connectStart() const; | 75 BLINK_PLATFORM_EXPORT double connectStart() const; |
| 76 BLINK_PLATFORM_EXPORT void setConnectStart(double); | 76 BLINK_PLATFORM_EXPORT void setConnectStart(double); |
| 77 | 77 |
| 78 BLINK_PLATFORM_EXPORT double connectEnd() const; | 78 BLINK_PLATFORM_EXPORT double connectEnd() const; |
| 79 BLINK_PLATFORM_EXPORT void setConnectEnd(double); | 79 BLINK_PLATFORM_EXPORT void setConnectEnd(double); |
| 80 | 80 |
| 81 BLINK_PLATFORM_EXPORT double fetchStart() const; | |
|
horo
2014/08/28 06:58:26
"fetchStart/fetchEnd" is too general name.
I think
shimazu
2014/08/29 02:00:47
Done.
| |
| 82 BLINK_PLATFORM_EXPORT void setFetchStart(double); | |
| 83 | |
| 84 BLINK_PLATFORM_EXPORT double launchServiceWorker() const; | |
| 85 BLINK_PLATFORM_EXPORT void setLaunchServiceWorker(double); | |
| 86 | |
| 87 BLINK_PLATFORM_EXPORT double fetchEnd() const; | |
| 88 BLINK_PLATFORM_EXPORT void setFetchEnd(double); | |
| 89 | |
| 81 BLINK_PLATFORM_EXPORT double sendStart() const; | 90 BLINK_PLATFORM_EXPORT double sendStart() const; |
| 82 BLINK_PLATFORM_EXPORT void setSendStart(double); | 91 BLINK_PLATFORM_EXPORT void setSendStart(double); |
| 83 | 92 |
| 84 BLINK_PLATFORM_EXPORT double sendEnd() const; | 93 BLINK_PLATFORM_EXPORT double sendEnd() const; |
| 85 BLINK_PLATFORM_EXPORT void setSendEnd(double); | 94 BLINK_PLATFORM_EXPORT void setSendEnd(double); |
| 86 | 95 |
| 87 BLINK_PLATFORM_EXPORT double receiveHeadersEnd() const; | 96 BLINK_PLATFORM_EXPORT double receiveHeadersEnd() const; |
| 88 BLINK_PLATFORM_EXPORT void setReceiveHeadersEnd(double); | 97 BLINK_PLATFORM_EXPORT void setReceiveHeadersEnd(double); |
| 89 | 98 |
| 90 BLINK_PLATFORM_EXPORT double sslStart() const; | 99 BLINK_PLATFORM_EXPORT double sslStart() const; |
| 91 BLINK_PLATFORM_EXPORT void setSSLStart(double); | 100 BLINK_PLATFORM_EXPORT void setSSLStart(double); |
| 92 | 101 |
| 93 BLINK_PLATFORM_EXPORT double sslEnd() const; | 102 BLINK_PLATFORM_EXPORT double sslEnd() const; |
| 94 BLINK_PLATFORM_EXPORT void setSSLEnd(double); | 103 BLINK_PLATFORM_EXPORT void setSSLEnd(double); |
| 95 | 104 |
| 96 #if INSIDE_BLINK | 105 #if INSIDE_BLINK |
| 97 BLINK_PLATFORM_EXPORT WebURLLoadTiming(const WTF::PassRefPtr<ResourceLoadTim ing>&); | 106 BLINK_PLATFORM_EXPORT WebURLLoadTiming(const WTF::PassRefPtr<ResourceLoadTim ing>&); |
| 98 BLINK_PLATFORM_EXPORT WebURLLoadTiming& operator=(const WTF::PassRefPtr<Reso urceLoadTiming>&); | 107 BLINK_PLATFORM_EXPORT WebURLLoadTiming& operator=(const WTF::PassRefPtr<Reso urceLoadTiming>&); |
| 99 BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<ResourceLoadTiming>() const; | 108 BLINK_PLATFORM_EXPORT operator WTF::PassRefPtr<ResourceLoadTiming>() const; |
| 100 #endif | 109 #endif |
| 101 | 110 |
| 102 private: | 111 private: |
| 103 WebPrivatePtr<ResourceLoadTiming> m_private; | 112 WebPrivatePtr<ResourceLoadTiming> m_private; |
| 104 }; | 113 }; |
| 105 | 114 |
| 106 } // namespace blink | 115 } // namespace blink |
| 107 | 116 |
| 108 #endif | 117 #endif |
| OLD | NEW |