blob: 8776ee0bbfc3884c91edee9736a3f2c4e8706c60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_COMMON_GPU_GPU_SURFACE_STUB_H_
#define CONTENT_COMMON_GPU_GPU_SURFACE_STUB_H_
#pragma once
#if defined(ENABLE_GPU)
#include "base/memory/ref_counted.h"
#include "ipc/ipc_channel.h"
#include "ipc/ipc_message.h"
#include "ui/gfx/gl/gl_surface.h"
class GpuChannel;
class GpuSurfaceStub
: public IPC::Channel::Listener,
public IPC::Message::Sender {
public:
// Takes ownership of surface.
GpuSurfaceStub(GpuChannel* channel, int route_id, gfx::GLSurface* surface);
virtual ~GpuSurfaceStub();
gfx::GLSurface* surface() const { return surface_.get(); }
// IPC::Channel::Listener implementation:
virtual bool OnMessageReceived(const IPC::Message& message);
// IPC::Message::Sender implementation:
virtual bool Send(IPC::Message* msg);
private:
// Message handlers.
// None yet.
// This is a weak pointer. The GpuChannel controls the lifetime of the
// GpuSurfaceStub and always outlives it.
GpuChannel* channel_;
int route_id_;
scoped_refptr<gfx::GLSurface> surface_;
DISALLOW_COPY_AND_ASSIGN(GpuSurfaceStub);
};
#endif // defined(ENABLE_GPU)
#endif // CONTENT_COMMON_GPU_GPU_SURFACE_STUB_H_
|