| 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 CONTENT_BROWSER_RENDERER_HOST_CONTEXT_PROVIDER_FACTORY_IMPL_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_CONTEXT_PROVIDER_FACTORY_IMPL_ANDROID_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_CONTEXT_PROVIDER_FACTORY_IMPL_ANDROID_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_CONTEXT_PROVIDER_FACTORY_IMPL_ANDROID_H_ |
| 7 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 | 97 |
| 98 scoped_refptr<cc::VulkanContextProvider> shared_vulkan_context_provider_; | 98 scoped_refptr<cc::VulkanContextProvider> shared_vulkan_context_provider_; |
| 99 | 99 |
| 100 bool in_handle_pending_requests_; | 100 bool in_handle_pending_requests_; |
| 101 | 101 |
| 102 bool in_shutdown_; | 102 bool in_shutdown_; |
| 103 | 103 |
| 104 base::OneShotTimer establish_gpu_channel_timeout_; | 104 base::OneShotTimer establish_gpu_channel_timeout_; |
| 105 | 105 |
| 106 std::unique_ptr<cc::SurfaceManager> surface_manager_; | 106 std::unique_ptr<cc::SurfaceManager> surface_manager_; |
| 107 uint32_t next_client_id_; | 107 uint32_t next_sink_id_; |
| 108 | 108 |
| 109 base::WeakPtrFactory<ContextProviderFactoryImpl> weak_factory_; | 109 base::WeakPtrFactory<ContextProviderFactoryImpl> weak_factory_; |
| 110 | 110 |
| 111 DISALLOW_COPY_AND_ASSIGN(ContextProviderFactoryImpl); | 111 DISALLOW_COPY_AND_ASSIGN(ContextProviderFactoryImpl); |
| 112 }; | 112 }; |
| 113 | 113 |
| 114 } // namespace content | 114 } // namespace content |
| 115 | 115 |
| 116 #endif // CONTENT_BROWSER_RENDERER_HOST_CONTEXT_PROVIDER_FACTORY_IMPL_ANDROID_H
_ | 116 #endif // CONTENT_BROWSER_RENDERER_HOST_CONTEXT_PROVIDER_FACTORY_IMPL_ANDROID_H
_ |
| OLD | NEW |