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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/V8BindingTest.cpp

Issue 2809243002: Split ToV8.h (Closed)
Patch Set: Rebase Created 3 years, 8 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 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698