Index: mojo/public/cpp/bindings/error_handler.h |
diff --git a/mojo/public/cpp/bindings/error_handler.h b/mojo/public/cpp/bindings/error_handler.h |
index a6f0a4aa1529c4fa064053bcc3f822d3206c8507..8ce1af2726405f727ebb3c096b9692b1456ff06d 100644 |
--- a/mojo/public/cpp/bindings/error_handler.h |
+++ b/mojo/public/cpp/bindings/error_handler.h |
@@ -14,15 +14,6 @@ class ErrorHandler { |
virtual void OnConnectionError() = 0; |
}; |
-// Used when you'd like to extend a base class with the same method signature |
-// as ErrorHandler. |
-template <typename Base> |
-class WithErrorHandler : public Base { |
- public: |
- virtual ~WithErrorHandler() {} |
- virtual void OnConnectionError() = 0; |
-}; |
- |
} // namespace mojo |
#endif // MOJO_PUBLIC_CPP_BINDINGS_ERROR_HANDLER_H_ |