/external/chromium_org/chrome/browser/ui/webui/ntp/android/ |
new_tab_page_ready_handler.cc | 38 TabAndroid* tab = TabAndroid::FromWebContents(web_ui()->GetWebContents());
|
bookmarks_handler.cc | 200 TabAndroid* tab = TabAndroid::FromWebContents(web_ui()->GetWebContents()); 477 TabAndroid* tab = TabAndroid::FromWebContents(web_ui()->GetWebContents());
|
/external/chromium_org/chrome/browser/android/ |
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...] |
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);
|
chrome_jni_registrar.cc | 133 { "TabAndroid", TabAndroid::RegisterTabAndroid },
|
recently_closed_tabs_bridge.cc | 103 TabAndroid* tab_android = TabAndroid::GetNativeTab(env, jtab);
|
shortcut_helper.cc | 211 TabAndroid* tab = reinterpret_cast<TabAndroid*>(tab_android_ptr);
|
dev_tools_server.cc | 143 TabAndroid* tab = model->GetTabAt(index); 187 TabAndroid* tab = model->GetTabAt(i); 308 TabAndroid* tab = tab_model->GetTabAt(i); 326 TabAndroid* tab = model->GetTabAt(i);
|
foreign_session_helper.cc | 276 TabAndroid* tab_android = TabAndroid::GetNativeTab(env, j_tab);
|
chrome_web_contents_delegate_android.cc | 308 TabAndroid::InitTabHelpers(new_contents);
|
/external/chromium_org/chrome/browser/ui/ |
browser_tab_contents.h | 35 // TabAndroid is the equivalent on Android. 38 friend class TabAndroid;
|
/external/chromium_org/chrome/browser/sync/glue/ |
synced_tab_delegate_android.h | 16 class TabAndroid; 24 explicit SyncedTabDelegateAndroid(TabAndroid* owning_tab_); 59 TabAndroid* tab_android_;
|
synced_tab_delegate_android.cc | 22 SyncedTabDelegateAndroid::SyncedTabDelegateAndroid(TabAndroid* tab_android) 124 TabAndroid* tab = TabAndroid::FromWebContents(web_contents);
|
synced_window_delegate_android.cc | 81 TabAndroid* tab = tab_model_->GetTabAt(index);
|
/external/chromium_org/chrome/browser/sessions/ |
session_restore_android.cc | 43 TabAndroid* current_tab = TabAndroid::FromWebContents(web_contents);
|
/external/chromium_org/chrome/browser/ui/android/ |
login_prompt_android.cc | 45 // Get pointer to TabAndroid 48 TabAndroid* tab_android = TabAndroid::FromWebContents(web_contents); 50 // Notify TabAndroid that HTTP authentication is required for current page. 66 LOG(WARNING) << "HTTP Authentication failed because TabAndroid is "
|
/external/chromium_org/chrome/browser/ui/android/tab_model/ |
tab_model.h | 26 class TabAndroid; 48 virtual TabAndroid* GetTabAt(int index) const = 0;
|
tab_model_list.cc | 38 TabAndroid* tab = TabAndroid::FromWebContents(params->source_contents);
|
tab_model_unittest.cc | 44 virtual TabAndroid* GetTabAt(int index) const OVERRIDE {
|
/external/chromium_org/chrome/browser/ui/webui/ |
welcome_ui_android.cc | 53 TabAndroid* tab = TabAndroid::FromWebContents(web_ui->GetWebContents());
|
/external/chromium_org/chrome/android/testshell/ |
testshell_tab.h | 36 class TestShellTab : public TabAndroid { 42 // TabAndroid Methods
|
testshell_tab.cc | 28 : TabAndroid(env, obj) {
|
/external/chromium_org/chrome/browser/android/omnibox/ |
omnibox_prerender.h | 15 class TabAndroid;
|
omnibox_prerender.cc | 77 TabAndroid::GetNativeTab(env, j_tab)->web_contents();
|
/external/chromium_org/chrome/browser/android/webapps/ |
single_tab_mode_tab_helper.cc | 97 TabAndroid* tab = TabAndroid::FromWebContents(web_contents());
|