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

Unified Diff: ui/ozone/platform/caca/caca_surface_factory.h

Issue 312393002: ozone: Move the factory interfaces into a common target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge-r278697 Created 6 years, 6 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
« no previous file with comments | « ui/ozone/platform/caca/caca_event_factory.h ('k') | ui/ozone/platform/caca/caca_surface_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/caca/caca_surface_factory.h
diff --git a/ui/ozone/platform/caca/caca_surface_factory.h b/ui/ozone/platform/caca/caca_surface_factory.h
index c3db5fda5fb57632bd807cd84cc0d72c8e779f04..a07033ae54bbac9a920fe89ba1f221306729f5f7 100644
--- a/ui/ozone/platform/caca/caca_surface_factory.h
+++ b/ui/ozone/platform/caca/caca_surface_factory.h
@@ -8,7 +8,7 @@
#include <caca.h>
#include "base/memory/scoped_ptr.h"
-#include "ui/gfx/ozone/surface_factory_ozone.h"
+#include "ui/ozone/public/surface_factory_ozone.h"
namespace gfx {
class SurfaceOzone;
@@ -18,19 +18,19 @@ namespace ui {
class CacaConnection;
-class CacaSurfaceFactory : public gfx::SurfaceFactoryOzone {
+class CacaSurfaceFactory : public ui::SurfaceFactoryOzone {
public:
CacaSurfaceFactory(CacaConnection* connection);
virtual ~CacaSurfaceFactory();
- // gfx::SurfaceFactoryOzone overrides:
+ // ui::SurfaceFactoryOzone overrides:
virtual HardwareState InitializeHardware() OVERRIDE;
virtual void ShutdownHardware() OVERRIDE;
virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE;
virtual bool LoadEGLGLES2Bindings(
AddGLLibraryCallback add_gl_library,
SetGLGetProcAddressProcCallback set_gl_get_proc_address) OVERRIDE;
- virtual scoped_ptr<gfx::SurfaceOzoneCanvas> CreateCanvasForWidget(
+ virtual scoped_ptr<ui::SurfaceOzoneCanvas> CreateCanvasForWidget(
gfx::AcceleratedWidget widget) OVERRIDE;
private:
« no previous file with comments | « ui/ozone/platform/caca/caca_event_factory.h ('k') | ui/ozone/platform/caca/caca_surface_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698