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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 struct CrossThreadResourceTimingInfoData; | 46 struct CrossThreadResourceTimingInfoData; |
47 | 47 |
48 class PLATFORM_EXPORT ResourceTimingInfo { | 48 class PLATFORM_EXPORT ResourceTimingInfo { |
49 USING_FAST_MALLOC(ResourceTimingInfo); | 49 USING_FAST_MALLOC(ResourceTimingInfo); |
50 WTF_MAKE_NONCOPYABLE(ResourceTimingInfo); | 50 WTF_MAKE_NONCOPYABLE(ResourceTimingInfo); |
51 | 51 |
52 public: | 52 public: |
53 static std::unique_ptr<ResourceTimingInfo> create(const AtomicString& type, | 53 static std::unique_ptr<ResourceTimingInfo> create(const AtomicString& type, |
54 const double time, | 54 const double time, |
55 bool isMainResource) { | 55 bool isMainResource) { |
56 return wrapUnique(new ResourceTimingInfo(type, time, isMainResource)); | 56 return WTF::wrapUnique(new ResourceTimingInfo(type, time, isMainResource)); |
57 } | 57 } |
58 static std::unique_ptr<ResourceTimingInfo> adopt( | 58 static std::unique_ptr<ResourceTimingInfo> adopt( |
59 std::unique_ptr<CrossThreadResourceTimingInfoData>); | 59 std::unique_ptr<CrossThreadResourceTimingInfoData>); |
60 | 60 |
61 // Gets a copy of the data suitable for passing to another thread. | 61 // Gets a copy of the data suitable for passing to another thread. |
62 std::unique_ptr<CrossThreadResourceTimingInfoData> copyData() const; | 62 std::unique_ptr<CrossThreadResourceTimingInfoData> copyData() const; |
63 | 63 |
64 double initialTime() const { return m_initialTime; } | 64 double initialTime() const { return m_initialTime; } |
65 bool isMainResource() const { return m_isMainResource; } | 65 bool isMainResource() const { return m_isMainResource; } |
66 | 66 |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 Vector<std::unique_ptr<CrossThreadResourceResponseData>> m_redirectChain; | 140 Vector<std::unique_ptr<CrossThreadResourceResponseData>> m_redirectChain; |
141 long long m_transferSize; | 141 long long m_transferSize; |
142 bool m_isMainResource; | 142 bool m_isMainResource; |
143 }; | 143 }; |
144 | 144 |
145 template <> | 145 template <> |
146 struct CrossThreadCopier<ResourceTimingInfo> { | 146 struct CrossThreadCopier<ResourceTimingInfo> { |
147 typedef WTF::PassedWrapper<std::unique_ptr<CrossThreadResourceTimingInfoData>> | 147 typedef WTF::PassedWrapper<std::unique_ptr<CrossThreadResourceTimingInfoData>> |
148 Type; | 148 Type; |
149 static Type copy(const ResourceTimingInfo& info) { | 149 static Type copy(const ResourceTimingInfo& info) { |
150 return passed(info.copyData()); | 150 return WTF::passed(info.copyData()); |
151 } | 151 } |
152 }; | 152 }; |
153 | 153 |
154 } // namespace blink | 154 } // namespace blink |
155 | 155 |
156 #endif | 156 #endif |
OLD | NEW |