Move AppMenuTest from ChromeShellTest to ChromePublicTest
[chromium-blink-merge.git] / chrome / browser / android / foreign_session_helper.h
blob5f79bd40f711a3db92e4482dcf5309e9ff3a937f
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_ANDROID_FOREIGN_SESSION_HELPER_H_
6 #define CHROME_BROWSER_ANDROID_FOREIGN_SESSION_HELPER_H_
8 #include <jni.h>
10 #include "base/android/scoped_java_ref.h"
11 #include "chrome/browser/profiles/profile.h"
12 #include "content/public/browser/notification_observer.h"
13 #include "content/public/browser/notification_registrar.h"
15 using base::android::ScopedJavaLocalRef;
17 struct SessionWindow;
19 namespace browser_sync {
20 struct SyncedSession;
21 } // namespace browser_sync
23 class ForeignSessionHelper : public content::NotificationObserver {
24 public:
25 explicit ForeignSessionHelper(Profile* profile);
26 void Destroy(JNIEnv* env, jobject obj);
27 jboolean IsTabSyncEnabled(JNIEnv* env, jobject obj);
28 void TriggerSessionSync(JNIEnv* env, jobject obj);
29 void SetOnForeignSessionCallback(JNIEnv* env, jobject obj, jobject callback);
30 jboolean GetForeignSessions(JNIEnv* env, jobject obj, jobject result);
31 jboolean OpenForeignSessionTab(JNIEnv* env,
32 jobject obj,
33 jobject j_tab,
34 jstring session_tag,
35 jint tab_id,
36 jint disposition);
37 void DeleteForeignSession(JNIEnv* env, jobject obj, jstring session_tag);
39 // NotificationObserver implemenation
40 void Observe(int type,
41 const content::NotificationSource& source,
42 const content::NotificationDetails& details) override;
44 static bool RegisterForeignSessionHelper(JNIEnv* env);
46 private:
47 ~ForeignSessionHelper() override;
49 Profile* profile_; // weak
50 base::android::ScopedJavaGlobalRef<jobject> callback_;
51 content::NotificationRegistrar registrar_;
53 DISALLOW_COPY_AND_ASSIGN(ForeignSessionHelper);
56 #endif // CHROME_BROWSER_ANDROID_FOREIGN_SESSION_HELPER_H_