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

Side by Side Diff: chrome/browser/android/dom_distiller/feedback_reporter_android.h

Issue 197473006: Add FeedbackReporter for reporting distillation quality. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed disableUI again and comment Created 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 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 #ifndef CHROME_BROWSER_ANDROID_DOM_DISTILLER_FEEDBACK_REPORTER_ANDROID_H_
6 #define CHROME_BROWSER_ANDROID_DOM_DISTILLER_FEEDBACK_REPORTER_ANDROID_H_
7
8 #include <jni.h>
9
10 #include "base/android/jni_helper.h"
11 #include "content/public/browser/web_contents.h"
12 #include "content/public/browser/web_contents_observer.h"
13
14 namespace content {
15 struct FrameNavigateParams;
16 struct LoadCommittedDetails;
17 } // namespace content
18
19 namespace dom_distiller {
20
21 namespace android {
22
23 class FeedbackReporterAndroid : content::WebContentsObserver {
24 public:
25 FeedbackReporterAndroid(JNIEnv* env, jobject obj);
26 virtual ~FeedbackReporterAndroid();
27
28 // Destroys the FeedbackReporterAndroid.
29 void Destroy(JNIEnv* env, jobject obj);
30
31 // Observes a new WebContents, if necessary.
32 void ReplaceWebContents(JNIEnv* env, jobject obj, jobject jweb_contents);
33
34 // WebContentsObserver implementation:
35 virtual void DidNavigateMainFrame(
36 const content::LoadCommittedDetails& details,
37 const content::FrameNavigateParams& params) OVERRIDE;
38
39 static jboolean IsReportableUrl(JNIEnv* env, jclass clazz);
40
41 private:
42 // FeedbackReporterAndroid on the Java side.
43 JavaObjectWeakGlobalRef weak_java_feedback_reporter_;
44
45 DISALLOW_COPY_AND_ASSIGN(FeedbackReporterAndroid);
46 };
47
48 // Registers the FeedbackReporter's native methods through JNI.
49 bool RegisterFeedbackReporter(JNIEnv* env);
50
51 } // namespace android
52
53 } // namespace dom_distiller
54
55 #endif // CHROME_BROWSER_ANDROID_DOM_DISTILLER_FEEDBACK_REPORTER_ANDROID_H_
OLDNEW
« no previous file with comments | « chrome/browser/android/chrome_jni_registrar.cc ('k') | chrome/browser/android/dom_distiller/feedback_reporter_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698