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

Unified Diff: content/browser/renderer_host/image_transport_factory.h

Issue 11343017: Move remaining files in content\browser\renderer_host to content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 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 side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698