Home | History | Annotate | Download | only in automation

Lines Matching refs:tab_handle

601 void AutomationProvider::OverrideEncoding(int tab_handle,
605 if (tab_tracker_->ContainsHandle(tab_handle)) {
606 NavigationController* nav = tab_tracker_->GetResource(tab_handle);
636 void AutomationProvider::SelectAll(int tab_handle) {
637 RenderViewHost* view = GetViewForTab(tab_handle);
646 void AutomationProvider::Cut(int tab_handle) {
647 RenderViewHost* view = GetViewForTab(tab_handle);
656 void AutomationProvider::Copy(int tab_handle) {
657 RenderViewHost* view = GetViewForTab(tab_handle);
666 void AutomationProvider::Paste(int tab_handle) {
667 RenderViewHost* view = GetViewForTab(tab_handle);
676 void AutomationProvider::ReloadAsync(int tab_handle) {
677 if (tab_tracker_->ContainsHandle(tab_handle)) {
678 NavigationController* tab = tab_tracker_->GetResource(tab_handle);
689 void AutomationProvider::StopAsync(int tab_handle) {
690 RenderViewHost* view = GetViewForTab(tab_handle);
694 DLOG(WARNING) << "StopAsync: no view for handle " << tab_handle;
701 void AutomationProvider::OnSetPageFontSize(int tab_handle,
713 if (tab_tracker_->ContainsHandle(tab_handle)) {
714 NavigationController* tab = tab_tracker_->GetResource(tab_handle);
733 void AutomationProvider::JavaScriptStressTestControl(int tab_handle,
736 RenderViewHost* view = GetViewForTab(tab_handle);
745 RenderViewHost* AutomationProvider::GetViewForTab(int tab_handle) {
746 if (tab_tracker_->ContainsHandle(tab_handle)) {
747 NavigationController* tab = tab_tracker_->GetResource(tab_handle);
960 void AutomationProvider::SaveAsAsync(int tab_handle) {
962 TabContents* tab_contents = GetTabContentsForHandle(tab_handle, &tab);