Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / chrome / browser / ui / android / context_menu_helper.h
blob9f84b6c32a8242510a2913283859a9b0e2d69e49
1 // Copyright 2013 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_UI_ANDROID_CONTEXT_MENU_HELPER_H_
6 #define CHROME_BROWSER_UI_ANDROID_CONTEXT_MENU_HELPER_H_
8 #include "base/android/jni_android.h"
9 #include "base/callback.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "content/public/browser/web_contents_user_data.h"
12 #include "content/public/common/context_menu_params.h"
14 namespace content {
15 struct ContextMenuParams;
16 class WebContents;
19 class ContextMenuHelper
20 : public content::WebContentsUserData<ContextMenuHelper> {
21 public:
22 ~ContextMenuHelper() override;
24 void ShowContextMenu(const content::ContextMenuParams& params);
26 void SetPopulator(jobject jpopulator);
28 // Methods called from Java via JNI ------------------------------------------
29 void OnStartDownload(JNIEnv* env, jobject obj, jboolean jis_link);
31 private:
32 explicit ContextMenuHelper(content::WebContents* web_contents);
33 friend class content::WebContentsUserData<ContextMenuHelper>;
35 static base::android::ScopedJavaLocalRef<jobject> CreateJavaContextMenuParams(
36 const content::ContextMenuParams& params);
38 base::android::ScopedJavaGlobalRef<jobject> java_obj_;
39 content::WebContents* web_contents_;
41 content::ContextMenuParams context_menu_params_;
43 DISALLOW_COPY_AND_ASSIGN(ContextMenuHelper);
46 bool RegisterContextMenuHelper(JNIEnv* env);
48 #endif // CHROME_BROWSER_UI_ANDROID_CONTEXT_MENU_HELPER_H_