blob: 4b612b7a4784b84d1d690fa90b548f4b6d431843 [file] [log] [blame]
// Copyright 2015 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.
#include "modules/mediacapturefromelement/AutoCanvasDrawListener.h"
#include <memory>
namespace blink {
AutoCanvasDrawListener::AutoCanvasDrawListener(
std::unique_ptr<WebCanvasCaptureHandler> handler)
: CanvasDrawListener(std::move(handler)) {}
// static
AutoCanvasDrawListener* AutoCanvasDrawListener::Create(
std::unique_ptr<WebCanvasCaptureHandler> handler) {
return new AutoCanvasDrawListener(std::move(handler));
}
} // namespace blink