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

Side by Side Diff: content/renderer/pepper_parent_context_provider.h

Issue 8342024: Fixed bugs with Pepper 3D under dynamic GPU switching. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 2 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 | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_RENDERER_PEPPER_PARENT_CONTEXT_PROVIDER_H_
6 #define CONTENT_RENDERER_PEPPER_PARENT_CONTEXT_PROVIDER_H_
7 #pragma once
8
9 class RendererGLContext;
10
11 // Defines the mechanism by which a Pepper 3D context fetches its
12 // parent context for display to the screen.
13 class PepperParentContextProvider {
14 public:
15 virtual ~PepperParentContextProvider();
16
17 virtual RendererGLContext* GetParentContextForPlatformContext3D() = 0;
apatrick_chromium 2011/10/19 18:24:27 You could add DISALLOW_COPY_AND_ASSIGN here and ad
Ken Russell (switch to Gerrit) 2011/10/19 22:04:45 Right, I should have done that according to the st
18 };
19
20 #endif // CONTENT_RENDERER_PEPPER_PARENT_CONTEXT_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698