Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: cc/output/in_process_context_provider.h

Issue 2748263002: Move cc::DisplayItemList and related classes into cc/paint/ (Closed)
Patch Set: Merge branch 'master' into ccpaint Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/output/gl_renderer.cc ('k') | cc/output/layer_quad.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 CC_OUTPUT_IN_PROCESS_CONTEXT_PROVIDER_H_ 5 #ifndef CC_OUTPUT_IN_PROCESS_CONTEXT_PROVIDER_H_
6 #define CC_OUTPUT_IN_PROCESS_CONTEXT_PROVIDER_H_ 6 #define CC_OUTPUT_IN_PROCESS_CONTEXT_PROVIDER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
11 11
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/synchronization/lock.h" 13 #include "base/synchronization/lock.h"
14 #include "cc/base/cc_export.h" 14 #include "cc/cc_export.h"
15 #include "cc/output/context_cache_controller.h" 15 #include "cc/output/context_cache_controller.h"
16 #include "cc/output/context_provider.h" 16 #include "cc/output/context_provider.h"
17 #include "gpu/command_buffer/common/gles2_cmd_utils.h" 17 #include "gpu/command_buffer/common/gles2_cmd_utils.h"
18 #include "gpu/ipc/in_process_command_buffer.h" 18 #include "gpu/ipc/in_process_command_buffer.h"
19 #include "ui/gfx/native_widget_types.h" 19 #include "ui/gfx/native_widget_types.h"
20 20
21 class GrContext; 21 class GrContext;
22 22
23 namespace gpu { 23 namespace gpu {
24 class GLInProcessContext; 24 class GLInProcessContext;
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 74
75 base::Lock context_lock_; 75 base::Lock context_lock_;
76 std::unique_ptr<gpu::GLInProcessContext> context_; 76 std::unique_ptr<gpu::GLInProcessContext> context_;
77 std::unique_ptr<skia_bindings::GrContextForGLES2Interface> gr_context_; 77 std::unique_ptr<skia_bindings::GrContextForGLES2Interface> gr_context_;
78 std::unique_ptr<ContextCacheController> cache_controller_; 78 std::unique_ptr<ContextCacheController> cache_controller_;
79 }; 79 };
80 80
81 } // namespace cc 81 } // namespace cc
82 82
83 #endif // CC_OUTPUT_IN_PROCESS_CONTEXT_PROVIDER_H_ 83 #endif // CC_OUTPUT_IN_PROCESS_CONTEXT_PROVIDER_H_
OLDNEW
« no previous file with comments | « cc/output/gl_renderer.cc ('k') | cc/output/layer_quad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698