blob: 6ecb7a615b40e9ee949ecd0002333d48a4dfb008 [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.
#ifndef COMPONENTS_DOM_DISTILLER_CORE_DISTILLER_UI_HANDLE_H_
#define COMPONENTS_DOM_DISTILLER_CORE_DISTILLER_UI_HANDLE_H_
#include "base/macros.h"
#include "url/gurl.h"
namespace dom_distiller {
// ExternalFeedbackReporter handles reporting distillation quality through an
// external source.
class DistillerUIHandle {
public:
DistillerUIHandle() {}
virtual ~DistillerUIHandle() {}
// Open the UI settings for dom distiller.
virtual void OpenSettings() = 0;
private:
DISALLOW_COPY_AND_ASSIGN(DistillerUIHandle);
};
} // namespace dom_distiller
#endif // COMPONENTS_DOM_DISTILLER_CORE_DISTILLER_UI_HANDLE_H_