HomeSort by relevance Sort by last modified time
    Searched refs:image_url (Results 1 - 25 of 25) sorted by null

  /external/chromium/chrome/browser/chromeos/login/
user_image_downloader.h 49 // If succeeded, returns true and stores the url in |image_url| parameter.
51 bool GetImageURL(const std::string& json_data, GURL* image_url) const;
56 bool GetImageURLFromEntries(ListValue* entry_list, GURL* image_url) const;
64 bool GetImageURLFromLinks(ListValue* link_list, GURL* image_url) const;
user_image_downloader.cc 76 GURL image_url; local
77 if (!GetImageURL(data, &image_url)) {
81 VLOG(1) << "Sending request to " << image_url;
82 new ImageDownloader(this, GURL(image_url), auth_token_);
98 GURL* image_url) const {
99 if (!image_url) {
120 return GetImageURLFromEntries(entry_list, image_url);
124 GURL* image_url) const {
144 if (GetImageURLFromLinks(link_list, image_url))
168 GURL* image_url) const
    [all...]
image_downloader.h 26 const GURL& image_url,
image_downloader.cc 27 const GURL& image_url,
31 image_fetcher_.reset(new URLFetcher(GURL(image_url), URLFetcher::GET, this));
enterprise_enrollment_view.cc 126 args.SetString("captchaUrl", error.captcha().image_url.spec());
existing_user_controller.cc 263 if (!failure.error().captcha().image_url.is_empty()) {
265 new CaptchaView(failure.error().captcha().image_url, false);
login_performer.cc 438 last_login_failure_.error().captcha().image_url,
  /external/chromium/webkit/glue/
image_resource_fetcher.cc 20 const GURL& image_url,
28 image_url_(image_url),
31 image_url, frame, target_type,
image_resource_fetcher.h 23 ImageResourceFetcher(const GURL& image_url,
33 const GURL& image_url() const { return image_url_; } function in class:webkit_glue::ImageResourceFetcher
  /external/chromium/chrome/browser/
favicon_helper.h 83 // Initiates loading an image from given |image_url|. Returns a download id
91 int DownloadImage(const GURL& image_url,
110 virtual int DownloadFavicon(const GURL& image_url, int image_size);
149 const GURL& image_url,
154 GURL image_url; member in struct:FaviconHelper::DownloadRequest
163 const GURL& image_url,
185 const GURL& image_url,
favicon_helper.cc 58 const GURL& image_url,
62 image_url(image_url),
106 int FaviconHelper::DownloadImage(const GURL& image_url,
111 return ScheduleDownload(GURL(), image_url, image_size, icon_type, callback);
120 const GURL& image_url,
131 SetHistoryFavicon(url, image_url, image_data, icon_type);
221 int FaviconHelper::DownloadFavicon(const GURL& image_url, int image_size) {
222 return tab_contents()->render_view_host()->DownloadFavicon(image_url,
280 const GURL& image_url,
    [all...]
favicon_helper_unittest.cc 44 const GURL& image_url,
47 : image_url_(image_url),
178 const GURL& image_url,
181 FaviconHelper::OnDidDownloadFavicon(id, image_url, errored, image);
213 virtual int DownloadFavicon(const GURL& image_url, int image_size) OVERRIDE {
215 download_handler_.reset(new DownloadHandler(download_id_, image_url,
  /external/chromium/chrome/common/net/gaia/
google_service_auth_error.cc 15 : token(t), image_url(img), unlock_url(unlock) {}
22 captcha_.image_url == b.captcha_.image_url &&
91 captcha_value->SetString("imageUrl", captcha_.image_url.spec());
google_service_auth_error.h 85 GURL image_url; // The CAPTCHA image to show the user. member in struct:GoogleServiceAuthError::Captcha
gaia_auth_fetcher_unittest.cc 325 GURL image_url("http://www.google.com/accounts/Captcha?ctoken=CCTOKEN");
330 EXPECT_EQ(error.captcha().image_url, image_url);
gaia_auth_fetcher.cc 339 GURL image_url(kCaptchaUrlPrefix + captcha_url);
342 captcha_token, image_url, unlock_url);
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
change_picture_options_handler.cc 135 std::string image_url; local
138 !args->GetString(0, &image_url)) {
143 if (!IsDefaultImageUrl(image_url, &user_image_index))
accounts_options_handler.cc 104 StringValue* image_url = local
107 user_pictures.SetWithoutPathExpansion(it->email(), image_url);
  /external/chromium/chrome/browser/ui/webui/chromeos/
imageburner_ui.h 94 virtual void OnImageUrlCreated(GURL* image_url, bool success) = 0;
202 virtual void OnImageUrlCreated(GURL* image_url, bool success) OVERRIDE;
imageburner_ui.cc 472 void ImageBurnHandler::OnImageUrlCreated(GURL* image_url, bool success) {
477 image_download_url_ = image_url;
597 std::string image_url; local
598 if (file_util::ReadFileToString(config_file_path_, &image_url)) {
599 image_url_.reset(new GURL(std::string(kImageBaseURL) + image_url));
  /external/chromium/chrome/browser/search_engines/
template_url_parser.cc 485 GURL image_url(UTF16ToUTF8(context->GetString()));
486 if (image_url.SchemeIs(chrome::kDataScheme)) {
492 context->SetImageURL(image_url);
539 GURL image_url(image_refs[i].url);
540 if (!image_url.is_valid() ||
541 !(image_url.SchemeIs(chrome::kHttpScheme) ||
542 image_url.SchemeIs(chrome::kHttpsScheme))) {
  /external/chromium/chrome/browser/remoting/
setup_flow_login_step.cc 150 args.SetString("captchaUrl", error.captcha().image_url.spec());
  /external/chromium/chrome/browser/ui/webui/options/
personal_options_handler.cc 426 StringValue image_url(
432 image_url);
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_setup_flow.cc 295 args.SetString("captchaUrl", error.captcha().image_url.spec());
  /external/chromium/chrome/browser/sync/
sync_setup_flow.cc 101 args->SetString("captchaUrl", error.captcha().image_url.spec());

Completed in 1085 milliseconds