Home | History | Annotate | Download | only in tabs

Lines Matching defs:Tab

20 typedef BrowserInit::LaunchWithProfile::Tab Tab;
38 // Adds a DictionaryValue to |values| representing the pinned tab at the
67 // Invokes EncodePinnedTab for each pinned tab in browser.
74 // Decodes the previously written values in |value| to |tab|, returning true
76 static bool DecodeTab(const DictionaryValue& value, Tab* tab) {
77 tab->is_app = false;
82 tab->url = GURL(url_string);
84 if (value.GetString(kAppID, &(tab->app_id)))
85 tab->is_app = true;
115 std::vector<Tab> PinnedTabCodec::ReadPinnedTabs(Profile* profile) {
116 std::vector<Tab> results;
129 Tab tab;
130 if (DecodeTab(*values, &tab))
131 results.push_back(tab);