| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <stdio.h> | 5 #include <stdio.h> |
| 6 | 6 |
| 7 #include <cmath> | 7 #include <cmath> |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 gpu::ContextSupport* context_support_; | 52 gpu::ContextSupport* context_support_; |
| 53 | 53 |
| 54 private: | 54 private: |
| 55 std::unique_ptr<gpu::GLInProcessContext> context_; | 55 std::unique_ptr<gpu::GLInProcessContext> context_; |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace | 58 } // namespace |
| 59 | 59 |
| 60 // Include the actual tests. | 60 // Include the actual tests. |
| 61 #define CONTEXT_TEST_F TEST_F | 61 #define CONTEXT_TEST_F TEST_F |
| 62 #include "content/common/gpu/client/gpu_context_tests.h" | 62 #include "gpu/ipc/client/gpu_context_tests.h" |
| OLD | NEW |