blob: 738d8da85112fb82ae5e72f2098bb5001598a495 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SERVICES_SHAPE_DETECTION_TEXT_DETECTION_IMPL_MAC_H_
#define SERVICES_SHAPE_DETECTION_TEXT_DETECTION_IMPL_MAC_H_
#include "base/mac/scoped_nsobject.h"
#include "services/shape_detection/public/interfaces/textdetection.mojom.h"
@class CIDetector;
namespace shape_detection {
class TextDetectionImplMac : public mojom::TextDetection {
public:
TextDetectionImplMac();
~TextDetectionImplMac() override;
void Detect(const SkBitmap& bitmap,
const mojom::TextDetection::DetectCallback& callback) override;
private:
base::scoped_nsobject<CIDetector> detector_;
DISALLOW_COPY_AND_ASSIGN(TextDetectionImplMac);
};
} // namespace shape_detection
#endif // SERVICES_SHAPE_DETECTION_TEXT_DETECTION_IMPL_MAC_H_