| 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/ToV8.h" |
| 9 #include "bindings/core/v8/V8BindingForTesting.h" | 9 #include "bindings/core/v8/V8BindingForTesting.h" |
| 10 #include "platform/wtf/Vector.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
| 11 #include "wtf/Vector.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) { |
| 19 return blink::ToV8(value, scope->context()->Global(), scope->isolate()); | 19 return blink::ToV8(value, scope->context()->Global(), scope->isolate()); |
| 20 } | 20 } |
| 21 | 21 |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 EXPECT_EQ(3U, stringVectorVector[1].size()); | 149 EXPECT_EQ(3U, stringVectorVector[1].size()); |
| 150 EXPECT_EQ("x", stringVectorVector[1][0]); | 150 EXPECT_EQ("x", stringVectorVector[1][0]); |
| 151 EXPECT_EQ("y", stringVectorVector[1][1]); | 151 EXPECT_EQ("y", stringVectorVector[1][1]); |
| 152 EXPECT_EQ("z", stringVectorVector[1][2]); | 152 EXPECT_EQ("z", stringVectorVector[1][2]); |
| 153 } | 153 } |
| 154 } | 154 } |
| 155 | 155 |
| 156 } // namespace | 156 } // namespace |
| 157 | 157 |
| 158 } // namespace blink | 158 } // namespace blink |
| OLD | NEW |