Chromium Code Reviews| Index: content/browser/compositor/gpu_output_surface_mac.h |
| diff --git a/content/browser/compositor/gpu_output_surface_mac.h b/content/browser/compositor/gpu_output_surface_mac.h |
| index 4205ead319630544db10ef91674edbc5a59f7525..51b9ecb037c51ef3c1ee810c9051864894153d70 100644 |
| --- a/content/browser/compositor/gpu_output_surface_mac.h |
| +++ b/content/browser/compositor/gpu_output_surface_mac.h |
| @@ -34,6 +34,11 @@ class GpuOutputSurfaceMac |
| void SetSurfaceSuspendedForRecycle(bool suspended) override; |
| private: |
| + // Store remote layers in a separate structure, so that non-Objective-C files |
| + // may include this header. |
| + class RemoteLayers; |
|
tapted
2016/05/27 00:33:19
struct? (otherwise my brain sees "class" and wants
ccameron
2016/06/03 02:43:01
Done.
|
| + std::unique_ptr<RemoteLayers> remote_layers_; |
| + |
| enum ShouldShowFramesState { |
| // Frames that come from the GPU process should appear on-screen. |
| SHOULD_SHOW_FRAMES, |