Index: services/media/framework/safe_clone.h |
diff --git a/services/media/framework/safe_clone.h b/services/media/framework/safe_clone.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1e4546f108a6599992b1ee2c63244c5aa706cafc |
--- /dev/null |
+++ b/services/media/framework/safe_clone.h |
@@ -0,0 +1,40 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef SERVICES_MEDIA_FRAMEWORK_SAFE_CLONE_H_ |
+#define SERVICES_MEDIA_FRAMEWORK_SAFE_CLONE_H_ |
+ |
+#include <memory> |
+#include <vector> |
+ |
+namespace mojo { |
+namespace media { |
+ |
+template<typename T> |
+std::unique_ptr<T> SafeClone(const std::unique_ptr<T>& t_ptr) { |
+ return t_ptr ? t_ptr.get()->Clone() : nullptr; |
+} |
+ |
+template<typename T> |
+std::unique_ptr<std::vector<std::unique_ptr<T>>> SafeClone( |
+ const std::unique_ptr<std::vector<std::unique_ptr<T>>>& vec) { |
+ if (vec == nullptr) { |
+ return nullptr; |
+ } |
+ |
+ std::unique_ptr<std::vector<std::unique_ptr<T>>> result = |
+ std::unique_ptr<std::vector<std::unique_ptr<T>>>( |
+ new std::vector<std::unique_ptr<T>>(vec->size())); |
+ |
+ for (const std::unique_ptr<T>& t_ptr : *vec.get()) { |
+ result->push_back(SafeClone(t_ptr)); |
+ } |
+ |
+ return result; |
+} |
+ |
+} // namespace media |
+} // namespace mojo |
+ |
+#endif // SERVICES_MEDIA_FRAMEWORK_SAFE_CLONE_H_ |