Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: mojo/public/cpp/bindings/lib/wtf_clone_equals_util.h

Issue 2686763002: [Mojo Video Capture] Split OnIncomingCapturedVideoFrame() to OnNewBuffer() and OnFrameReadyInBuffer( (Closed)
Patch Set: rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 MOJO_PUBLIC_CPP_BINDINGS_LIB_WTF_CLONE_EQUALS_UTIL_H_ 5 #ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_WTF_CLONE_EQUALS_UTIL_H_
6 #define MOJO_PUBLIC_CPP_BINDINGS_LIB_WTF_CLONE_EQUALS_UTIL_H_ 6 #define MOJO_PUBLIC_CPP_BINDINGS_LIB_WTF_CLONE_EQUALS_UTIL_H_
7 7
8 #include <type_traits> 8 #include <type_traits>
9 9
10 #include "mojo/public/cpp/bindings/lib/clone_equals_util.h" 10 #include "mojo/public/cpp/bindings/clone_traits.h"
11 #include "mojo/public/cpp/bindings/lib/equals_traits.h"
11 #include "third_party/WebKit/Source/wtf/HashMap.h" 12 #include "third_party/WebKit/Source/wtf/HashMap.h"
12 #include "third_party/WebKit/Source/wtf/Optional.h" 13 #include "third_party/WebKit/Source/wtf/Optional.h"
13 #include "third_party/WebKit/Source/wtf/Vector.h" 14 #include "third_party/WebKit/Source/wtf/Vector.h"
14 #include "third_party/WebKit/Source/wtf/text/WTFString.h" 15 #include "third_party/WebKit/Source/wtf/text/WTFString.h"
15 16
16 namespace mojo { 17 namespace mojo {
17 namespace internal {
18 18
19 template <typename T> 19 template <typename T>
20 struct CloneTraits<WTF::Vector<T>, false> { 20 struct CloneTraits<WTF::Vector<T>, false> {
21 static WTF::Vector<T> Clone(const WTF::Vector<T>& input) { 21 static WTF::Vector<T> Clone(const WTF::Vector<T>& input) {
22 WTF::Vector<T> result; 22 WTF::Vector<T> result;
23 result.reserveCapacity(input.size()); 23 result.reserveCapacity(input.size());
24 for (const auto& element : input) 24 for (const auto& element : input)
25 result.push_back(internal::Clone(element)); 25 result.push_back(mojo::Clone(element));
26 26
27 return result; 27 return result;
28 } 28 }
29 }; 29 };
30 30
31 template <typename K, typename V> 31 template <typename K, typename V>
32 struct CloneTraits<WTF::HashMap<K, V>, false> { 32 struct CloneTraits<WTF::HashMap<K, V>, false> {
33 static WTF::HashMap<K, V> Clone(const WTF::HashMap<K, V>& input) { 33 static WTF::HashMap<K, V> Clone(const WTF::HashMap<K, V>& input) {
34 WTF::HashMap<K, V> result; 34 WTF::HashMap<K, V> result;
35 auto input_end = input.end(); 35 auto input_end = input.end();
36 for (auto it = input.begin(); it != input_end; ++it) 36 for (auto it = input.begin(); it != input_end; ++it)
37 result.add(internal::Clone(it->key), internal::Clone(it->value)); 37 result.add(mojo::Clone(it->key), mojo::Clone(it->value));
38 return result; 38 return result;
39 } 39 }
40 }; 40 };
41 41
42 namespace internal {
43
42 template <typename T> 44 template <typename T>
43 struct EqualsTraits<WTF::Vector<T>, false> { 45 struct EqualsTraits<WTF::Vector<T>, false> {
44 static bool Equals(const WTF::Vector<T>& a, const WTF::Vector<T>& b) { 46 static bool Equals(const WTF::Vector<T>& a, const WTF::Vector<T>& b) {
45 if (a.size() != b.size()) 47 if (a.size() != b.size())
46 return false; 48 return false;
47 for (size_t i = 0; i < a.size(); ++i) { 49 for (size_t i = 0; i < a.size(); ++i) {
48 if (!internal::Equals(a[i], b[i])) 50 if (!internal::Equals(a[i], b[i]))
49 return false; 51 return false;
50 } 52 }
51 return true; 53 return true;
(...skipping 15 matching lines...) Expand all
67 return false; 69 return false;
68 } 70 }
69 return true; 71 return true;
70 } 72 }
71 }; 73 };
72 74
73 } // namespace internal 75 } // namespace internal
74 } // namespace mojo 76 } // namespace mojo
75 77
76 #endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_WTF_CLONE_EQUALS_UTIL_H_ 78 #endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_WTF_CLONE_EQUALS_UTIL_H_
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/lib/equals_traits.h ('k') | mojo/public/tools/bindings/generators/cpp_templates/module.h.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698