Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/childaccounts/ExternalFeedbackReporter.java

Issue 2768093004: Remove unused feedback class in dom distiller component (Closed)
Patch Set: address comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/dom_distiller/DomDistillerUIUtils.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/dom_distiller/DomDistillerUIUtils.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698