blob: a11490c9a5c227296f9fcdb836db5b7fdfa49144 [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.
package org.chromium.chrome.browser.feedback;
/**
* FeedbackReporter enables Chrome to send feedback to the feedback server.
*/
public interface FeedbackReporter {
/**
* Report feedback to the feedback server.
*
* @param collector the {@link FeedbackCollector} to use for extra data.
*/
// clang-format off
// TODO(crbug.com/781015): Clang isn't formatting this correctly.
default void reportFeedback(FeedbackCollector collector) {}
// clang-format on
}