libcamera: pipeline_handler: Rename handlers() method to factories()

The PipelineHandlerFactory::handlers() static method returns a list of
factories, not a list of handlers. Rename it accordingly.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
Laurent Pinchart
2019-01-14 18:02:59 +02:00
parent 619d312462
commit 6ee4050182
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ public:
const std::string &name() const { return name_; }
static void registerType(PipelineHandlerFactory *factory);
static std::vector<PipelineHandlerFactory *> &handlers();
static std::vector<PipelineHandlerFactory *> &factories();
private:
std::string name_;