summaryrefslogtreecommitdiffstats
path: root/content/renderer/pepper_parent_context_provider.h
blob: 7a9c6fe431c0d68fffe0ea2e8e4e7212d27971aa (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
// 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_RENDERER_PEPPER_PARENT_CONTEXT_PROVIDER_H_
#define CONTENT_RENDERER_PEPPER_PARENT_CONTEXT_PROVIDER_H_
#pragma once

#include "base/basictypes.h"

class RendererGLContext;

// Defines the mechanism by which a Pepper 3D context fetches its
// parent context for display to the screen.
class PepperParentContextProvider {
 public:
  virtual ~PepperParentContextProvider();
  virtual RendererGLContext* GetParentContextForPlatformContext3D() = 0;

 protected:
  PepperParentContextProvider();

 private:
  DISALLOW_COPY_AND_ASSIGN(PepperParentContextProvider);
};

#endif  // CONTENT_RENDERER_PEPPER_PARENT_CONTEXT_PROVIDER_H_