Move Webstore URL concepts to //extensions and out
[chromium-blink-merge.git] / chrome / browser / android / dom_distiller / feedback_reporter_android.h
blob4fe16797f4805dcdd86de929fc56a011268b5294
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.
5 #ifndef CHROME_BROWSER_ANDROID_DOM_DISTILLER_FEEDBACK_REPORTER_ANDROID_H_
6 #define CHROME_BROWSER_ANDROID_DOM_DISTILLER_FEEDBACK_REPORTER_ANDROID_H_
8 #include <jni.h>
10 #include "base/android/jni_weak_ref.h"
11 #include "content/public/browser/web_contents.h"
12 #include "content/public/browser/web_contents_observer.h"
14 namespace content {
15 struct FrameNavigateParams;
16 struct LoadCommittedDetails;
17 } // namespace content
19 namespace dom_distiller {
21 namespace android {
23 class FeedbackReporterAndroid : content::WebContentsObserver {
24 public:
25 FeedbackReporterAndroid(JNIEnv* env, jobject obj);
26 virtual ~FeedbackReporterAndroid();
28 // Destroys the FeedbackReporterAndroid.
29 void Destroy(JNIEnv* env, jobject obj);
31 // Observes a new WebContents, if necessary.
32 void ReplaceWebContents(JNIEnv* env, jobject obj, jobject jweb_contents);
34 // WebContentsObserver implementation:
35 virtual void DidNavigateMainFrame(
36 const content::LoadCommittedDetails& details,
37 const content::FrameNavigateParams& params) OVERRIDE;
39 private:
40 // FeedbackReporterAndroid on the Java side.
41 JavaObjectWeakGlobalRef weak_java_feedback_reporter_;
43 DISALLOW_COPY_AND_ASSIGN(FeedbackReporterAndroid);
46 // Registers the FeedbackReporter's native methods through JNI.
47 bool RegisterFeedbackReporter(JNIEnv* env);
49 } // namespace android
51 } // namespace dom_distiller
53 #endif // CHROME_BROWSER_ANDROID_DOM_DISTILLER_FEEDBACK_REPORTER_ANDROID_H_