Index: cc/surfaces/surface_factory.h |
diff --git a/cc/surfaces/surface_factory.h b/cc/surfaces/surface_factory.h |
index 52f44bbb62b0e915295438df39a3d377f3d1d683..566144433405fe31ef019ad6b1510ee4ec819292 100644 |
--- a/cc/surfaces/surface_factory.h |
+++ b/cc/surfaces/surface_factory.h |
@@ -30,8 +30,6 @@ class Surface; |
class SurfaceFactoryClient; |
class SurfaceManager; |
-enum class SurfaceDrawStatus { DRAW_SKIPPED, DRAWN }; |
- |
// A SurfaceFactory is used to create surfaces that may share resources and |
// receive returned resources for frames submitted to those surfaces. Resources |
// submitted to frames created by a particular factory will be returned to that |
@@ -40,7 +38,7 @@ enum class SurfaceDrawStatus { DRAW_SKIPPED, DRAWN }; |
class CC_SURFACES_EXPORT SurfaceFactory |
: public base::SupportsWeakPtr<SurfaceFactory> { |
public: |
- using DrawCallback = base::Callback<void(SurfaceDrawStatus)>; |
+ using DrawCallback = base::Callback<void()>; |
SurfaceFactory(SurfaceManager* manager, SurfaceFactoryClient* client); |
~SurfaceFactory(); |