Home | History | Annotate | Download | only in browser

Lines Matching defs:link

178   base::win::ScopedComPtr<IShellLink> link;
179 HRESULT result = link.CreateInstance(CLSID_ShellLink, NULL,
187 result = link->SetPath(application.c_str());
200 result = link->SetArguments(arguments.c_str());
208 link->SetIconLocation(item->icon().c_str(), item->index());
224 result = link.QueryInterface(property_store.Receive());
242 return collection->AddObject(link);
309 scoped_refptr<ShellLinkItem> link(*item);
310 AddShellLink(collection, application, switches, link);
654 scoped_refptr<ShellLinkItem> link(new ShellLinkItem);
656 link->SetArguments(UTF8ToWide(url));
657 link->SetTitle(current_navigation.title());
658 list->push_back(link);
659 icon_urls_.push_back(make_pair(url, link));
714 scoped_refptr<ShellLinkItem> link(new ShellLinkItem);
716 link->SetArguments(UTF8ToWide(url));
717 link->SetTitle(
718 !(*page)->GetTitle().empty() ? (*page)->GetTitle() : link->arguments());
719 most_visited_pages_.push_back(link);
720 icon_urls_.push_back(make_pair(url, link));