| Index: content/browser/renderer_host/image_transport_factory.h
|
| ===================================================================
|
| --- content/browser/renderer_host/image_transport_factory.h (revision 164665)
|
| +++ content/browser/renderer_host/image_transport_factory.h (working copy)
|
| @@ -8,10 +8,6 @@
|
| #include "base/memory/ref_counted.h"
|
| #include "ui/gfx/native_widget_types.h"
|
|
|
| -namespace content {
|
| -class GLHelper;
|
| -}
|
| -
|
| namespace gfx {
|
| class Size;
|
| }
|
| @@ -25,6 +21,9 @@
|
| class WebGraphicsContext3D;
|
| }
|
|
|
| +namespace content {
|
| +class GLHelper;
|
| +
|
| // This class provides a way to get notified when surface handles get lost.
|
| class ImageTransportFactoryObserver {
|
| public:
|
| @@ -86,7 +85,7 @@
|
| // Gets a GLHelper instance, associated with the shared context. This
|
| // GLHelper will get destroyed whenever the shared context is lost
|
| // (ImageTransportFactoryObserver::OnLostResources is called).
|
| - virtual content::GLHelper* GetGLHelper() = 0;
|
| + virtual GLHelper* GetGLHelper() = 0;
|
|
|
| // Inserts a SyncPoint into the shared context.
|
| virtual uint32 InsertSyncPoint() = 0;
|
| @@ -95,4 +94,6 @@
|
| virtual void RemoveObserver(ImageTransportFactoryObserver* observer) = 0;
|
| };
|
|
|
| +} // namespace content
|
| +
|
| #endif // CONTENT_BROWSER_RENDERER_HOST_IMAGE_TRANSPORT_FACTORY_H_
|
|
|