| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef Array_h | 5 #ifndef Array_h |
| 6 #define Array_h | 6 #define Array_h |
| 7 | 7 |
| 8 #include "platform/PlatformExport.h" | |
| 9 #include "platform/inspector_protocol/Collections.h" | 8 #include "platform/inspector_protocol/Collections.h" |
| 10 #include "platform/inspector_protocol/ErrorSupport.h" | 9 #include "platform/inspector_protocol/ErrorSupport.h" |
| 10 #include "platform/inspector_protocol/Platform.h" |
| 11 #include "platform/inspector_protocol/String16.h" | 11 #include "platform/inspector_protocol/String16.h" |
| 12 #include "platform/inspector_protocol/ValueConversions.h" | 12 #include "platform/inspector_protocol/ValueConversions.h" |
| 13 #include "platform/inspector_protocol/Values.h" | 13 #include "platform/inspector_protocol/Values.h" |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 namespace protocol { | 16 namespace protocol { |
| 17 | 17 |
| 18 template<typename T> | 18 template<typename T> |
| 19 class ArrayBase { | 19 class ArrayBase { |
| 20 public: | 20 public: |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 } | 128 } |
| 129 | 129 |
| 130 private: | 130 private: |
| 131 protocol::Vector<std::unique_ptr<T>> m_vector; | 131 protocol::Vector<std::unique_ptr<T>> m_vector; |
| 132 }; | 132 }; |
| 133 | 133 |
| 134 } // namespace platform | 134 } // namespace platform |
| 135 } // namespace blink | 135 } // namespace blink |
| 136 | 136 |
| 137 #endif // !defined(Array_h) | 137 #endif // !defined(Array_h) |
| OLD | NEW |