/external/chromium_org/chrome/browser/ui/webui/ |
constrained_web_dialog_ui_browsertest.cc | 94 scoped_ptr<WebContents> new_tab(dialog_delegate->GetWebContents()); 95 ASSERT_TRUE(new_tab.get()); 98 ConstrainedWebDialogBrowserTestObserver observer(new_tab.get()); 104 new_tab.reset();
|
/external/chromium/chrome/browser/ |
tab_restore_uitest.cc | 149 scoped_refptr<TabProxy> new_tab(browser_proxy->GetTab(closed_tab_index)); 150 ASSERT_TRUE(new_tab.get()); 152 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, new_tab->NavigateToURL(url1_)); 154 ASSERT_TRUE(new_tab->Close(true)); 155 new_tab = NULL; 180 scoped_refptr<TabProxy> new_tab(browser_proxy->GetTab(closed_tab_index)); 181 ASSERT_TRUE(new_tab.get()); 183 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, new_tab->NavigateToURL(url1_)); 185 ASSERT_TRUE(new_tab->Close(true)); 186 new_tab = NULL [all...] |
/external/chromium/chrome/browser/debugger/ |
devtools_client_host.h | 55 virtual void TabReplaced(TabContentsWrapper* new_tab) = 0;
|
inspectable_tab_proxy.h | 79 virtual void TabReplaced(TabContentsWrapper* new_tab);
|
inspectable_tab_proxy.cc | 51 void DevToolsClientHostImpl::TabReplaced(TabContentsWrapper* new_tab) { 53 id_ = new_tab->controller().session_id().id();
|
devtools_manager_unittest.cc | 43 virtual void TabReplaced(TabContentsWrapper* new_tab) {
|
devtools_window.h | 43 virtual void TabReplaced(TabContentsWrapper* new_tab);
|
devtools_manager.h | 88 void TabReplaced(TabContentsWrapper* old_tab, TabContentsWrapper* new_tab);
|
devtools_manager.cc | 260 TabContentsWrapper* new_tab) { 269 client_host->TabReplaced(new_tab); 270 AttachClientHost(cookie, new_tab->tab_contents()->render_view_host());
|
devtools_window.cc | 132 void DevToolsWindow::TabReplaced(TabContentsWrapper* new_tab) { 133 DCHECK_EQ(profile_, new_tab->profile()); 134 inspected_tab_ = new_tab->tab_contents();
|
/external/chromium/chrome/browser/extensions/ |
extension_devtools_bridge.h | 34 virtual void TabReplaced(TabContentsWrapper* new_tab);
|
extension_devtools_bridge.cc | 119 void ExtensionDevToolsBridge::TabReplaced(TabContentsWrapper* new_tab) { 120 DCHECK_EQ(profile_, new_tab->profile());
|
/external/chromium_org/content/test/gpu/gpu_tests/ |
context_lost.py | 61 new_tab = tab.browser.tabs.New() 64 new_tab.Navigate('chrome://gpucrash') 74 new_tab.Close()
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
tab_unittest.py | 44 new_tab = self._browser.tabs.New() 45 new_tab.Navigate('about:blank') 46 util.WaitFor(lambda: _IsDocumentVisible(new_tab), timeout=5) 50 self.assertFalse(_IsDocumentVisible(new_tab))
|
browser_unittest.py | 89 new_tab = b.tabs.New() 92 self.assertEquals(new_tab.url, 'about:blank') 94 new_tab.Close()
|
/external/chromium_org/chrome/browser/ui/views/ash/ |
tab_scrubber.cc | 160 Tab* new_tab = tab_strip->GetTabAt(initial_tab, tab_point); local 161 if (!new_tab) 164 int new_index = tab_strip->GetModelIndexOfTab(new_tab); 192 new_tab->hover_controller()->Show(views::GlowHoverController::PRONOUNCED); 197 views::View::ConvertPointToTarget(tab_strip, new_tab, &hover_point); 198 new_tab->hover_controller()->SetLocation(hover_point);
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
sessions_helper.cc | 162 SessionTab* new_tab = new SessionTab(); local 163 new_tab->navigations.resize(tab.navigations.size()); 165 new_tab->navigations.begin()); 166 new_window->tabs.push_back(new_tab);
|
/external/chromium_org/chrome/browser/media/ |
webrtc_browsertest_base.cc | 153 content::WebContents* new_tab = local 155 GetUserMediaAndAccept(new_tab); 156 return new_tab;
|
/external/chromium/chrome/browser/geolocation/ |
geolocation_permission_context_unittest.cc | 151 TestTabContentsWithPendingInfoBar* new_tab = local 153 new_tab->controller().LoadURL(url, GURL(), PageTransition::TYPED); 154 static_cast<TestRenderViewHost*>(new_tab->render_manager()->current_host())-> 156 extra_tabs_.push_back(new_tab);
|
/external/valgrind/main/coregrind/m_debuginfo/ |
storage.c | 259 DiSym* new_tab; local 270 new_tab = ML_(dinfo_zalloc)( "di.storage.addSym.1", 274 new_tab[i] = di->symtab[i]; 277 di->symtab = new_tab; 291 DiLoc* new_tab; local 299 new_tab = ML_(dinfo_zalloc)( "di.storage.addLoc.1", 303 new_tab[i] = di->loctab[i]; 306 di->loctab = new_tab; 322 DiLoc* new_tab; local 327 new_tab = ML_(dinfo_zalloc)( "di.storage.shrinkLocTab", 444 DiCfSI* new_tab; local [all...] |
/external/chromium/chrome/browser/instant/ |
instant_browsertest.cc | 507 TabContentsWrapper* new_tab = browser()->instant()->GetPreviewContents(); local 508 ASSERT_TRUE(new_tab); 509 ASSERT_NE(new_tab, initial_tab); 511 new_tab->tab_contents()->GetRenderWidgetHostView(); [all...] |
/external/chromium_org/chrome/browser/chromeos/input_method/ |
textinput_browsertest.cc | 296 content::WebContents* new_tab = local 298 EXPECT_NE(base_tab, new_tab);
|
/external/chromium_org/chrome/browser/geolocation/ |
chrome_geolocation_permission_context_unittest.cc | 204 content::WebContents* new_tab = content::WebContents::Create( local 206 new_tab->GetController().LoadURL( 208 content::RenderViewHostTester::For(new_tab->GetRenderViewHost())-> 212 extensions::SetViewType(new_tab, extensions::VIEW_TYPE_TAB_CONTENTS); 213 InfoBarService::CreateForWebContents(new_tab); 215 extra_tabs_.push_back(new_tab);
|
/external/chromium_org/chrome/browser/sessions/ |
session_restore_browsertest.cc | 660 const content::WebContents* new_tab = local 662 EXPECT_EQ(webui_url, new_tab->GetURL()); 664 new_tab->GetRenderViewHost()->GetEnabledBindings()); 677 const content::WebContents* new_tab = local 679 EXPECT_EQ(webui_url, new_tab->GetURL()); 681 new_tab->GetRenderViewHost()->GetEnabledBindings()); [all...] |
/external/chromium_org/chrome/test/gpu/ |
gpu_feature_browsertest.cc | 79 bool new_tab) { 92 if (new_tab) {
|