| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Intel Inc. All rights reserved. | 2 * Copyright (C) 2013 Intel 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 27 matching lines...) Expand all Loading... |
| 38 #include "wtf/Functional.h" | 38 #include "wtf/Functional.h" |
| 39 #include "wtf/Noncopyable.h" | 39 #include "wtf/Noncopyable.h" |
| 40 #include "wtf/PtrUtil.h" | 40 #include "wtf/PtrUtil.h" |
| 41 #include "wtf/text/AtomicString.h" | 41 #include "wtf/text/AtomicString.h" |
| 42 #include <memory> | 42 #include <memory> |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 | 45 |
| 46 struct CrossThreadResourceTimingInfoData; | 46 struct CrossThreadResourceTimingInfoData; |
| 47 | 47 |
| 48 class PLATFORM_EXPORT ResourceTimingInfo { | 48 class PLATFORM_EXPORT ResourceTimingInfo |
| 49 : public RefCounted<ResourceTimingInfo> { |
| 49 USING_FAST_MALLOC(ResourceTimingInfo); | 50 USING_FAST_MALLOC(ResourceTimingInfo); |
| 50 WTF_MAKE_NONCOPYABLE(ResourceTimingInfo); | 51 WTF_MAKE_NONCOPYABLE(ResourceTimingInfo); |
| 51 | 52 |
| 52 public: | 53 public: |
| 53 static std::unique_ptr<ResourceTimingInfo> create(const AtomicString& type, | 54 static PassRefPtr<ResourceTimingInfo> create(const AtomicString& type, |
| 54 const double time, | 55 const double time, |
| 55 bool isMainResource) { | 56 bool isMainResource) { |
| 56 return WTF::wrapUnique(new ResourceTimingInfo(type, time, isMainResource)); | 57 return adoptRef(new ResourceTimingInfo(type, time, isMainResource)); |
| 57 } | 58 } |
| 58 static std::unique_ptr<ResourceTimingInfo> adopt( | 59 static PassRefPtr<ResourceTimingInfo> adopt( |
| 59 std::unique_ptr<CrossThreadResourceTimingInfoData>); | 60 std::unique_ptr<CrossThreadResourceTimingInfoData>); |
| 60 | 61 |
| 61 // Gets a copy of the data suitable for passing to another thread. | 62 // Gets a copy of the data suitable for passing to another thread. |
| 62 std::unique_ptr<CrossThreadResourceTimingInfoData> copyData() const; | 63 std::unique_ptr<CrossThreadResourceTimingInfoData> copyData() const; |
| 63 | 64 |
| 64 double initialTime() const { return m_initialTime; } | 65 double initialTime() const { return m_initialTime; } |
| 65 bool isMainResource() const { return m_isMainResource; } | 66 bool isMainResource() const { return m_isMainResource; } |
| 66 | 67 |
| 67 void setInitiatorType(const AtomicString& type) { m_type = type; } | 68 void setInitiatorType(const AtomicString& type) { m_type = type; } |
| 68 const AtomicString& initiatorType() const { return m_type; } | 69 const AtomicString& initiatorType() const { return m_type; } |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 typedef WTF::PassedWrapper<std::unique_ptr<CrossThreadResourceTimingInfoData>> | 148 typedef WTF::PassedWrapper<std::unique_ptr<CrossThreadResourceTimingInfoData>> |
| 148 Type; | 149 Type; |
| 149 static Type copy(const ResourceTimingInfo& info) { | 150 static Type copy(const ResourceTimingInfo& info) { |
| 150 return WTF::passed(info.copyData()); | 151 return WTF::passed(info.copyData()); |
| 151 } | 152 } |
| 152 }; | 153 }; |
| 153 | 154 |
| 154 } // namespace blink | 155 } // namespace blink |
| 155 | 156 |
| 156 #endif | 157 #endif |
| OLD | NEW |