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

  /external/chromium_org/chrome/browser/extensions/updater/
manifest_fetch_data.cc 30 full_url_(update_url) {
31 std::string query = full_url_.has_query() ?
32 full_url_.query() + "&" : std::string();
36 full_url_ = full_url_.ReplaceComponents(replacements);
74 // Compute the string we'd append onto the full_url_, and see if it fits.
123 std::string extra = full_url_.has_query() ? "&" : "?";
127 int new_size = full_url_.possibly_invalid_spec().size() + extra.size();
136 full_url_ = GURL(full_url_.possibly_invalid_spec() + extra)
    [all...]
manifest_fetch_data.h 61 const GURL& full_url() const { return full_url_; }
90 GURL full_url_; member in class:extensions::ManifestFetchData
  /external/chromium/chrome/browser/extensions/
extension_updater.h 77 const GURL& full_url() const { return full_url_; }
100 GURL full_url_; member in class:ManifestFetchData
extension_updater.cc 72 full_url_(update_url) {
107 // Compute the string we'd append onto the full_url_, and see if it fits.
142 std::string extra = full_url_.has_query() ? "&" : "?";
146 int new_size = full_url_.possibly_invalid_spec().size() + extra.size();
155 full_url_ = GURL(full_url_.possibly_invalid_spec() + extra);
    [all...]

Completed in 134 milliseconds