Home | History | Annotate | Download | only in profiles
      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.
      4 
      5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_ANDROID_H_
      6 #define CHROME_BROWSER_PROFILES_PROFILE_ANDROID_H_
      7 
      8 #include <jni.h>
      9 
     10 #include "base/android/scoped_java_ref.h"
     11 #include "base/compiler_specific.h"
     12 #include "base/supports_user_data.h"
     13 
     14 class Profile;
     15 
     16 // Android wrapper around profile that provides safer passage from java and
     17 // back to native.
     18 class ProfileAndroid : public base::SupportsUserData::Data {
     19  public:
     20   static ProfileAndroid* FromProfile(Profile* profile);
     21   static Profile* FromProfileAndroid(jobject obj);
     22   static bool RegisterProfileAndroid(JNIEnv* env);
     23 
     24   explicit ProfileAndroid(Profile* profile);
     25   virtual ~ProfileAndroid();
     26 
     27   base::android::ScopedJavaLocalRef<jobject> GetJavaObject();
     28 
     29  private:
     30   Profile* profile_;  // weak
     31   base::android::ScopedJavaGlobalRef<jobject> obj_;
     32 };
     33 
     34 #endif  // CHROME_BROWSER_PROFILES_PROFILE_ANDROID_H_
     35