HomeSort by relevance Sort by last modified time
    Searched defs:TabAndroid (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/browser/android/
tab_android.h 40 class TabAndroid : public CoreTabHelperDelegate,
45 static TabAndroid* FromWebContents(content::WebContents* web_contents);
47 // Returns the native TabAndroid stored in the Java TabBase represented by
49 static TabAndroid* GetNativeTab(JNIEnv* env, jobject obj);
51 TabAndroid(JNIEnv* env, jobject obj);
53 // Return the WebContents, if any, currently owned by this TabAndroid.
56 // Return specific id information regarding this TabAndroid.
140 virtual ~TabAndroid();
155 DISALLOW_COPY_AND_ASSIGN(TabAndroid);
tab_android.cc 128 void TabAndroid::InitTabHelpers(content::WebContents* contents) {
132 TabAndroid* TabAndroid::FromWebContents(content::WebContents* web_contents) {
141 return static_cast<TabAndroid*>(core_delegate);
144 TabAndroid* TabAndroid::GetNativeTab(JNIEnv* env, jobject obj) {
145 return reinterpret_cast<TabAndroid*>(Java_TabBase_getNativePtr(env, obj));
148 TabAndroid::TabAndroid(JNIEnv* env, jobject obj)
155 TabAndroid::~TabAndroid()
    [all...]

Completed in 48 milliseconds