OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "webkit/plugins/ppapi/v8_var_converter.h" | 5 #include "content/renderer/pepper/v8_var_converter.h" |
6 | 6 |
7 #include <cmath> | 7 #include <cmath> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/values.h" | 12 #include "base/values.h" |
13 #include "ppapi/c/pp_bool.h" | 13 #include "ppapi/c/pp_bool.h" |
14 #include "ppapi/c/pp_var.h" | 14 #include "ppapi/c/pp_var.h" |
15 #include "ppapi/shared_impl/array_var.h" | 15 #include "ppapi/shared_impl/array_var.h" |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 expected->SetWithStringKey("undefined", oops.get()); | 378 expected->SetWithStringKey("undefined", oops.get()); |
379 ScopedPPVar release_expected( | 379 ScopedPPVar release_expected( |
380 ScopedPPVar::PassRef(), expected->GetPPVar()); | 380 ScopedPPVar::PassRef(), expected->GetPPVar()); |
381 | 381 |
382 ASSERT_TRUE(TestEqual(release_expected.get(), release_actual.get())); | 382 ASSERT_TRUE(TestEqual(release_expected.get(), release_actual.get())); |
383 } | 383 } |
384 } | 384 } |
385 | 385 |
386 } // namespace ppapi | 386 } // namespace ppapi |
387 } // namespace webkit | 387 } // namespace webkit |
OLD | NEW |