Home
last modified time | relevance | path

Searched refs:TabAndroid (Results 1 – 25 of 25) sorted by relevance

/external/chromium_org/chrome/browser/android/
Dtab_android.cc128 void TabAndroid::InitTabHelpers(content::WebContents* contents) { in InitTabHelpers()
132 TabAndroid* TabAndroid::FromWebContents(content::WebContents* web_contents) { in FromWebContents()
141 return static_cast<TabAndroid*>(core_delegate); in FromWebContents()
144 TabAndroid* TabAndroid::GetNativeTab(JNIEnv* env, jobject obj) { in GetNativeTab()
145 return reinterpret_cast<TabAndroid*>(Java_TabBase_getNativePtr(env, obj)); in GetNativeTab()
148 TabAndroid::TabAndroid(JNIEnv* env, jobject obj) in TabAndroid() function in TabAndroid
155 TabAndroid::~TabAndroid() { in ~TabAndroid()
164 int TabAndroid::GetAndroidId() const { in GetAndroidId()
172 int TabAndroid::GetSyncId() const { in GetSyncId()
180 base::string16 TabAndroid::GetTitle() const { in GetTitle()
[all …]
Dtab_android.h40 class TabAndroid : public CoreTabHelperDelegate,
45 static TabAndroid* FromWebContents(content::WebContents* web_contents);
49 static TabAndroid* GetNativeTab(JNIEnv* env, jobject obj);
51 TabAndroid(JNIEnv* env, jobject obj);
140 virtual ~TabAndroid();
155 DISALLOW_COPY_AND_ASSIGN(TabAndroid);
Drecently_closed_tabs_bridge.cc103 TabAndroid* tab_android = TabAndroid::GetNativeTab(env, jtab); in OpenRecentlyClosedTab()
Ddev_tools_server.cc143 TabAndroid* tab = model->GetTabAt(index); in GetAgentHost()
187 TabAndroid* tab = model->GetTabAt(i); in FindTab()
308 TabAndroid* tab = tab_model->GetTabAt(i); in CreateNewTarget()
326 TabAndroid* tab = model->GetTabAt(i); in EnumerateTargets()
Dshortcut_helper.cc211 TabAndroid* tab = reinterpret_cast<TabAndroid*>(tab_android_ptr); in AddShortcut()
Dchrome_jni_registrar.cc133 { "TabAndroid", TabAndroid::RegisterTabAndroid },
Dforeign_session_helper.cc276 TabAndroid* tab_android = TabAndroid::GetNativeTab(env, j_tab); in OpenForeignSessionTab()
Dchrome_web_contents_delegate_android.cc308 TabAndroid::InitTabHelpers(new_contents); in AddNewContents()
/external/chromium_org/chrome/browser/sync/glue/
Dsynced_tab_delegate_android.h16 class TabAndroid; variable
24 explicit SyncedTabDelegateAndroid(TabAndroid* owning_tab_);
59 TabAndroid* tab_android_;
Dsynced_tab_delegate_android.cc22 SyncedTabDelegateAndroid::SyncedTabDelegateAndroid(TabAndroid* tab_android) in SyncedTabDelegateAndroid()
124 TabAndroid* tab = TabAndroid::FromWebContents(web_contents); in ImplFromWebContents()
Dsynced_window_delegate_android.cc81 TabAndroid* tab = tab_model_->GetTabAt(index); in GetTabAt()
/external/chromium_org/chrome/browser/ui/webui/ntp/android/
Dnew_tab_page_ready_handler.cc38 TabAndroid* tab = TabAndroid::FromWebContents(web_ui()->GetWebContents()); in HandleNewTabPageReady()
Dbookmarks_handler.cc200 TabAndroid* tab = TabAndroid::FromWebContents(web_ui()->GetWebContents()); in HandleEditBookmark()
477 TabAndroid* tab = TabAndroid::FromWebContents(web_ui()->GetWebContents()); in OnShortcutFaviconDataAvailable()
/external/chromium_org/chrome/browser/ui/webui/
Dwelcome_ui_android.cc53 TabAndroid* tab = TabAndroid::FromWebContents(web_ui->GetWebContents()); in WelcomeUI()
/external/chromium_org/chrome/browser/ui/android/
Dlogin_prompt_android.cc48 TabAndroid* tab_android = TabAndroid::FromWebContents(web_contents); in BuildViewForPasswordManager()
/external/chromium_org/chrome/browser/sessions/
Dsession_restore_android.cc43 TabAndroid* current_tab = TabAndroid::FromWebContents(web_contents); in RestoreForeignSessionTab()
/external/chromium_org/chrome/browser/ui/android/tab_model/
Dtab_model.h26 class TabAndroid; variable
48 virtual TabAndroid* GetTabAt(int index) const = 0;
Dtab_model_list.cc38 TabAndroid* tab = TabAndroid::FromWebContents(params->source_contents); in HandlePopupNavigation()
Dtab_model_unittest.cc44 virtual TabAndroid* GetTabAt(int index) const OVERRIDE { in GetTabAt()
/external/chromium_org/chrome/browser/android/webapps/
Dsingle_tab_mode_tab_helper.cc97 TabAndroid* tab = TabAndroid::FromWebContents(web_contents()); in HandleOpenUrl()
/external/chromium_org/chrome/browser/ui/
Dbrowser_tab_contents.h38 friend class TabAndroid; variable
/external/chromium_org/chrome/browser/android/omnibox/
Domnibox_prerender.h15 class TabAndroid; variable
Domnibox_prerender.cc77 TabAndroid::GetNativeTab(env, j_tab)->web_contents(); in PrerenderMaybe()
/external/chromium_org/chrome/android/testshell/
Dtestshell_tab.h36 class TestShellTab : public TabAndroid {
Dtestshell_tab.cc28 : TabAndroid(env, obj) { in TestShellTab()