| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 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_COMMON_GPU_NULL_TRANSPORT_SURFACE_H_ | 5 #ifndef CONTENT_COMMON_GPU_NULL_TRANSPORT_SURFACE_H_ |
| 6 #define CONTENT_COMMON_GPU_NULL_TRANSPORT_SURFACE_H_ | 6 #define CONTENT_COMMON_GPU_NULL_TRANSPORT_SURFACE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "content/common/gpu/image_transport_surface.h" | 9 #include "content/common/gpu/image_transport_surface.h" |
| 10 #include "ui/gfx/native_widget_types.h" | 10 #include "ui/gfx/native_widget_types.h" |
| 11 | 11 |
| 12 namespace content { | 12 namespace content { |
| 13 | 13 |
| 14 // Used when the GPU process is not involved in frame transport, but frame | 14 // Used when the GPU process is not involved in frame transport, but frame |
| 15 // resources are exchanged between client and target directly (such as in | 15 // resources are exchanged between client and target directly (such as in |
| 16 // delegated rendering). | 16 // delegated rendering). |
| 17 class NullTransportSurface : public PassThroughImageTransportSurface { | 17 class NullTransportSurface : public PassThroughImageTransportSurface { |
| 18 public: | 18 public: |
| 19 NullTransportSurface(GpuChannelManager* manager, | 19 NullTransportSurface(GpuChannelManager* manager, |
| 20 GpuCommandBufferStub* stub, | 20 GpuCommandBufferStub* stub, |
| 21 const gfx::GLSurfaceHandle& handle); | 21 const gfx::GLSurfaceHandle& handle); |
| 22 | 22 |
| 23 // gfx::GLSurfaceAdapter implementation. | 23 // gfx::GLSurfaceAdapter implementation. |
| 24 virtual bool Initialize() override; | 24 bool Initialize() override; |
| 25 virtual void Destroy() override; | 25 void Destroy() override; |
| 26 virtual bool SwapBuffers() override; | 26 bool SwapBuffers() override; |
| 27 virtual bool PostSubBuffer(int x, int y, int width, int height) override; | 27 bool PostSubBuffer(int x, int y, int width, int height) override; |
| 28 virtual bool OnMakeCurrent(gfx::GLContext* context) override; | 28 bool OnMakeCurrent(gfx::GLContext* context) override; |
| 29 | 29 |
| 30 protected: | 30 protected: |
| 31 virtual ~NullTransportSurface(); | 31 ~NullTransportSurface() override; |
| 32 | 32 |
| 33 virtual void SendVSyncUpdateIfAvailable() override; | 33 void SendVSyncUpdateIfAvailable() override; |
| 34 | 34 |
| 35 private: | 35 private: |
| 36 uint32 parent_client_id_; | 36 uint32 parent_client_id_; |
| 37 | 37 |
| 38 DISALLOW_COPY_AND_ASSIGN(NullTransportSurface); | 38 DISALLOW_COPY_AND_ASSIGN(NullTransportSurface); |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 } // namespace content | 41 } // namespace content |
| 42 | 42 |
| 43 #endif // CONTENT_COMMON_GPU_NULL_TRANSPORT_SURFACE_H_ | 43 #endif // CONTENT_COMMON_GPU_NULL_TRANSPORT_SURFACE_H_ |
| OLD | NEW |