HomeSort by relevance Sort by last modified time
    Searched full:has_all_images (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/browser/webdata/
web_apps_table.h 23 // has_all_images Do we have all the images?
42 bool SetWebAppHasAllImages(const GURL& url, bool has_all_images);
web_apps_table.cc 40 "has_all_images INTEGER NOT NULL)")) {
98 bool has_all_images) {
100 "INSERT OR REPLACE INTO web_apps (url, has_all_images) VALUES (?, ?)"));
106 s.BindInt(1, has_all_images ? 1 : 0);
112 "SELECT has_all_images FROM web_apps WHERE url=?"));
web_data_service.h 97 bool has_all_images; member in struct:WDAppImagesResult
345 void SetWebAppHasAllImages(const GURL& app_url, bool has_all_images);
web_data_service.cc 39 WDAppImagesResult::WDAppImagesResult() : has_all_images(false) {}
183 bool has_all_images) {
186 NULL, app_url, has_all_images);
776 result.has_all_images =
    [all...]

Completed in 178 milliseconds