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 #include <cmath> | 6 #include <cmath> |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "gpu/command_buffer/client/gl_in_process_context.h" | 10 #include "gpu/command_buffer/client/gl_in_process_context.h" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 gpu::ContextSupport* context_support_; | 50 gpu::ContextSupport* context_support_; |
51 | 51 |
52 private: | 52 private: |
53 std::unique_ptr<gpu::GLInProcessContext> context_; | 53 std::unique_ptr<gpu::GLInProcessContext> context_; |
54 }; | 54 }; |
55 | 55 |
56 } // namespace | 56 } // namespace |
57 | 57 |
58 // Include the actual tests. | 58 // Include the actual tests. |
59 #define CONTEXT_TEST_F TEST_F | 59 #define CONTEXT_TEST_F TEST_F |
60 #include "content/common/gpu/client/gpu_context_tests.h" | 60 #include "gpu/ipc/client/gpu_context_tests.h" |
OLD | NEW |