Home | History | Annotate | Download | only in webdata

Lines Matching refs:app_url

129 void WebDataService::SetWebAppImage(const GURL& app_url,
132 Bind(&WebDataService::SetWebAppImageImpl, this, app_url, image));
135 void WebDataService::SetWebAppHasAllImages(const GURL& app_url,
138 Bind(&WebDataService::SetWebAppHasAllImagesImpl, this, app_url,
142 void WebDataService::RemoveWebApp(const GURL& app_url) {
144 Bind(&WebDataService::RemoveWebAppImpl, this, app_url));
148 const GURL& app_url, WebDataServiceConsumer* consumer) {
150 Bind(&WebDataService::GetWebAppImagesImpl, this, app_url), consumer);
229 const GURL& app_url, const SkBitmap& image, WebDatabase* db) {
230 WebAppsTable::FromWebDatabase(db)->SetWebAppImage(app_url, image);
235 const GURL& app_url, bool has_all_images, WebDatabase* db) {
236 WebAppsTable::FromWebDatabase(db)->SetWebAppHasAllImages(app_url,
242 const GURL& app_url, WebDatabase* db) {
243 WebAppsTable::FromWebDatabase(db)->RemoveWebApp(app_url);
248 const GURL& app_url, WebDatabase* db) {
251 WebAppsTable::FromWebDatabase(db)->GetWebAppHasAllImages(app_url);
252 WebAppsTable::FromWebDatabase(db)->GetWebAppImages(app_url, &result.images);