OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "bindings/core/v8/V8Binding.h" | 5 #include "bindings/core/v8/V8Binding.h" |
6 | 6 |
7 #include "bindings/core/v8/ExceptionState.h" | 7 #include "bindings/core/v8/ExceptionState.h" |
8 #include "bindings/core/v8/ToV8.h" | 8 #include "bindings/core/v8/ToV8ForCore.h" |
9 #include "bindings/core/v8/V8BindingForTesting.h" | 9 #include "bindings/core/v8/V8BindingForTesting.h" |
10 #include "platform/wtf/Vector.h" | 10 #include "platform/wtf/Vector.h" |
11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
12 | 12 |
13 namespace blink { | 13 namespace blink { |
14 | 14 |
15 namespace { | 15 namespace { |
16 | 16 |
17 template <typename T> | 17 template <typename T> |
18 v8::Local<v8::Value> ToV8(V8TestingScope* scope, T value) { | 18 v8::Local<v8::Value> ToV8(V8TestingScope* scope, T value) { |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 EXPECT_EQ(3U, string_vector_vector[1].size()); | 158 EXPECT_EQ(3U, string_vector_vector[1].size()); |
159 EXPECT_EQ("x", string_vector_vector[1][0]); | 159 EXPECT_EQ("x", string_vector_vector[1][0]); |
160 EXPECT_EQ("y", string_vector_vector[1][1]); | 160 EXPECT_EQ("y", string_vector_vector[1][1]); |
161 EXPECT_EQ("z", string_vector_vector[1][2]); | 161 EXPECT_EQ("z", string_vector_vector[1][2]); |
162 } | 162 } |
163 } | 163 } |
164 | 164 |
165 } // namespace | 165 } // namespace |
166 | 166 |
167 } // namespace blink | 167 } // namespace blink |
OLD | NEW |