| OLD | NEW |
| 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 EXTENSIONS_RENDERER_API_BINDING_TEST_H_ | 5 #ifndef EXTENSIONS_RENDERER_BINDINGS_API_BINDING_TEST_H_ |
| 6 #define EXTENSIONS_RENDERER_API_BINDING_TEST_H_ | 6 #define EXTENSIONS_RENDERER_BINDINGS_API_BINDING_TEST_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/test/scoped_task_environment.h" | 12 #include "base/test/scoped_task_environment.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 14 #include "v8/include/v8.h" | 14 #include "v8/include/v8.h" |
| 15 | 15 |
| 16 namespace gin { | 16 namespace gin { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 std::unique_ptr<gin::IsolateHolder> isolate_holder_; | 63 std::unique_ptr<gin::IsolateHolder> isolate_holder_; |
| 64 std::unique_ptr<gin::ContextHolder> main_context_holder_; | 64 std::unique_ptr<gin::ContextHolder> main_context_holder_; |
| 65 std::vector<std::unique_ptr<gin::ContextHolder>> additional_context_holders_; | 65 std::vector<std::unique_ptr<gin::ContextHolder>> additional_context_holders_; |
| 66 | 66 |
| 67 DISALLOW_COPY_AND_ASSIGN(APIBindingTest); | 67 DISALLOW_COPY_AND_ASSIGN(APIBindingTest); |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 } // namespace extensions | 70 } // namespace extensions |
| 71 | 71 |
| 72 #endif // EXTENSIONS_RENDERER_API_BINDING_TEST_H_ | 72 #endif // EXTENSIONS_RENDERER_BINDINGS_API_BINDING_TEST_H_ |
| OLD | NEW |