| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 package org.chromium.chrome.browser.childaccounts; | |
| 6 | |
| 7 import android.app.Activity; | |
| 8 | |
| 9 /** | |
| 10 * Provides a way of reporting feedback to an external feedback service. | |
| 11 */ | |
| 12 public interface ExternalFeedbackReporter { | |
| 13 /** | |
| 14 * Records feedback related to child account features. | |
| 15 * | |
| 16 * @param activity the activity to take a screenshot of. | |
| 17 * @param description default description text. | |
| 18 * @param url the URL to report feedback for. | |
| 19 */ | |
| 20 void reportFeedback(Activity activity, String description, String url); | |
| 21 } | |
| OLD | NEW |