Searched defs:tab (Results 26 - 50 of 318) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/sessions/
H A Dsession_tab_helper.cc41 SessionID::id_type SessionTabHelper::IdForTab(const content::WebContents* tab) { argument
43 tab ? SessionTabHelper::FromWebContents(tab) : NULL;
49 const content::WebContents* tab) {
51 tab ? SessionTabHelper::FromWebContents(tab) : NULL;
48 IdForWindowContainingTab( const content::WebContents* tab) argument
/external/chromium_org/chrome/browser/sync/glue/
H A Dsynced_session.cc60 bool ShouldSyncSessionTab(const SessionTab& tab) { argument
61 if (tab.navigations.empty())
64 for (size_t i = 0; i < tab.navigations.size(); ++i) {
65 const GURL& virtual_url = tab.navigations.at(i).virtual_url();
81 const SessionTab* tab = *i; local
82 if (ShouldSyncSessionTab(*tab))
/external/chromium_org/chrome/browser/sync/sessions/
H A Dsessions_util.cc17 bool ShouldSyncTab(const SyncedTabDelegate& tab) { argument
19 tab.GetWindowId()) == NULL) {
23 // Does the tab have a valid NavigationEntry?
24 if (tab.ProfileIsSupervised() && tab.GetBlockedNavigations()->size() > 0)
27 int entry_count = tab.GetEntryCount();
31 int pending_index = tab.GetPendingEntryIndex();
35 tab.GetPendingEntry() : tab.GetEntryAtIndex(i);
/external/chromium_org/chrome/browser/ui/sync/
H A Done_click_signin_sync_observer.cc18 void CloseTab(content::WebContents* tab) { argument
19 content::WebContentsDelegate* tab_delegate = tab->GetDelegate();
21 tab_delegate->CloseContents(tab);
66 // back to the sync engine. Close the gaia sign in tab if the |continue_url_|
70 // Close the Gaia sign-in tab via a task to make sure we aren't in the
/external/chromium_org/chrome/browser/ui/webui/
H A Dwelcome_ui_android.cc58 TabAndroid* tab = TabAndroid::FromWebContents(web_ui->GetWebContents()); local
59 bool tos_visible = tab && tab->ShouldWelcomePageLinkToTermsOfService();
H A Dmetrics_handler.cc87 WebContents* tab = web_ui()->GetWebContents(); local
89 // Not all new tab pages get timed. In those cases, we don't have a
91 CoreTabHelper* core_tab_helper = CoreTabHelper::FromWebContents(tab);
106 // The new tab page has finished loading; reset it.
107 CoreTabHelper* core_tab_helper = CoreTabHelper::FromWebContents(tab);
114 content::Source<WebContents>(tab),
/external/chromium_org/chrome/test/android/unit_tests_apk/src/org/chromium/chrome/unit_tests_apk/
H A DChromeNativeTestApplication.java33 protected void openClearBrowsingData(Tab tab) { argument
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dkronecker.c66 /* In 'tab', only odd-indexed entries are relevant:
68 * tab[BN_lsw(n) & 7]
71 static const int tab[8] = {0, 1, 0, -1, 0, -1, 0, 1}; local
116 ret = tab[BN_lsw(A) & 7];
152 ret = ret * tab[BN_lsw(B) & 7];
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dtab_list_backend.py7 from telemetry.core import tab namespace
13 """A dynamic sequence of tab.Tabs in UI order."""
17 backend_wrapper=tab.Tab)
27 # TODO(dtu): crbug.com/160946, allow closing the last tab on some platforms.
28 # For now, just create a new tab before closing the last tab.
36 raise Exception('Unable to close tab, tab id not found: %s' % tab_id)
49 raise Exception('Unable to activate tab, tab i
[all...]
/external/openssl/crypto/bn/
H A Dbn_kron.c69 /* In 'tab', only odd-indexed entries are relevant:
71 * tab[BN_lsw(n) & 7]
75 static const int tab[8] = {0, 1, 0, -1, 0, -1, 0, 1}; local
124 ret = tab[BN_lsw(A) & 7];
164 ret = ret * tab[BN_lsw(B) & 7];
/external/chromium_org/athena/extensions/shell/
H A Dathena_shell_app_delegate.cc33 content::WebContents* tab,
32 RunFileChooser( content::WebContents* tab, const content::FileChooserParams& params) argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omnibox/
H A DOmniboxPrerender.java56 * @param currentUrl url the current tab is displaying.
59 * @param tab The tab whose webcontent's to use.
62 Profile profile, Tab tab) {
64 profile, tab);
74 Tab tab);
61 prerenderMaybe(String url, String currentUrl, long nativeAutocompleteResult, Profile profile, Tab tab) argument
72 nativePrerenderMaybe(long nativeOmniboxPrerender, String url, String currentUrl, long nativeAutocompleteResult, Profile profile, Tab tab) argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/
H A DTabModelDelegate.java17 * Called when a new tab is created.
19 void didCreateNewTab(Tab tab); argument
28 * @param tab The tab that is requested to be shown.
29 * @param type The reason why this tab was requested to be shown.
31 void requestToShowTab(Tab tab, TabSelectionType type); argument
H A DEmptyTabModelObserver.java17 public void didSelectTab(Tab tab, TabSelectionType type, int lastId) { argument
21 public void willCloseTab(Tab tab, boolean animate) { argument
25 public void didCloseTab(Tab tab) { argument
29 public void willAddTab(Tab tab, TabLaunchType type) { argument
33 public void didAddTab(Tab tab, TabLaunchType type) { argument
37 public void didMoveTab(Tab tab, int newIndex, int curIndex) { argument
41 public void tabPendingClosure(Tab tab) { argument
45 public void tabClosureUndone(Tab tab) { argument
49 public void tabClosureCommitted(Tab tab) { argument
H A DTabModelObserver.java17 * Called when a tab is selected.
19 * @param tab The newly selected tab.
21 * @param lastId The ID of the last selected tab, or {@link Tab#INVALID_TAB_ID} if no tab was
24 void didSelectTab(Tab tab, TabSelectionType type, int lastId); argument
27 * Called when a tab starts closing.
29 * @param tab The tab to close.
32 void willCloseTab(Tab tab, boolea argument
39 didCloseTab(Tab tab) argument
47 willAddTab(Tab tab, TabLaunchType type) argument
55 didAddTab(Tab tab, TabLaunchType type) argument
64 didMoveTab(Tab tab, int newIndex, int curIndex) argument
72 tabPendingClosure(Tab tab) argument
79 tabClosureUndone(Tab tab) argument
86 tabClosureCommitted(Tab tab) argument
[all...]
H A DTabModelOrderController.java12 * into a tab strip model. See tab_strip_model_order_controller.cc and
25 * Determine the insertion index of the next tab. If it's not the result of
28 * @param type The launch type of the new tab.
30 * @return Where to insert the tab.
47 * Determine the insertion index of the next tab.
49 * @param type The launch type of the new tab.
50 * @return Where to insert the tab.
64 // If the tab was opened in the foreground, insert it adjacent to
65 // the tab that opened that link.
68 // If the tab wa
142 sameModelType(TabModel model, Tab tab) argument
[all...]
/external/chromium_org/chrome/browser/android/
H A Dpassword_authentication_manager.cc47 TabAndroid* tab = TabAndroid::FromWebContents(web_contents); local
48 if (!tab)
56 tab->GetJavaObject().obj(),
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dtextinput_browsertest.cc36 content::WebContents* tab = local
41 tab,
50 tab,
97 content::WebContents* tab = local
99 content::WaitForLoadStop(tab);
101 ASSERT_TRUE(helper.ClickElement("text_id", tab));
105 ASSERT_TRUE(helper.ClickElement("password_id", tab));
122 content::WebContents* tab = local
127 tab,
135 ASSERT_TRUE(helper.ClickElement("text_id", tab));
154 content::WebContents* tab = local
183 content::WebContents* tab = local
209 content::WebContents* tab = local
241 content::WebContents* tab = local
[all...]
/external/chromium_org/chrome/browser/ui/android/tab_model/
H A Dtab_model_list.cc39 TabAndroid* tab = TabAndroid::FromWebContents(params->source_contents); local
42 DCHECK(tab);
43 tab->HandlePopupNavigation(params);
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dlauncher_app_tab_helper.cc27 content::WebContents* tab) {
33 // Note: It is possible to come here after a tab got removed form the browser
35 Browser* browser = chrome::FindBrowserWithWebContents(tab);
41 // use the tab's url for app tabs.
48 const GURL url = tab->GetURL();
83 std::string LauncherAppTabHelper::GetAppID(content::WebContents* tab) { argument
92 const extensions::Extension* extension = GetExtensionForTab(*it, tab);
100 const extensions::Extension* extension = GetExtensionForTab(profile_, tab);
26 GetExtensionForTab(Profile* profile, content::WebContents* tab) argument
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dstar_view_browsertest.cc96 // First switch to a new tab and back, to also test a scenario where we
105 content::WebContents* tab = local
107 content::TitleWatcher title_watcher(tab, expected_title);
116 HWND hwnd = tab->GetNativeView()->GetHost()->GetAcceleratedWidget();
/external/e2fsprogs/lib/et/
H A Dcom_right.c75 struct error_table tab; member in struct:foobar
92 struct error_table *tab; local
102 et->table = tab = &f->tab;
103 tab->msgs = messages;
104 tab->n_msgs = num_errors;
105 tab->base = base;
/external/chromium_org/athena/extensions/chrome/
H A Dathena_chrome_app_delegate.cc58 content::WebContents* tab,
60 FileSelectHelper::RunFileChooser(tab, params);
57 RunFileChooser( content::WebContents* tab, const content::FileChooserParams& params) argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/password_manager/
H A DPasswordAuthenticationManager.java25 * Requests password authentication be presented for the given tab.
26 * @param tab The tab containing the protected password.
29 void requestAuthentication(Tab tab, PasswordAuthenticationCallback callback); argument
75 public void requestAuthentication(Tab tab, PasswordAuthenticationCallback callback) { argument
111 * Requests password authentication be presented for the given tab.
112 * @param tab The tab containing the protected password.
117 Tab tab, PasswordAuthenticationCallback callback) {
118 getDelegate().requestAuthentication(tab, callbac
116 requestAuthentication( Tab tab, PasswordAuthenticationCallback callback) argument
[all...]
/external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/
H A DChromeShellApplication.java101 protected void openClearBrowsingData(Tab tab) { argument

Completed in 384 milliseconds

1234567891011>>