Lines Matching refs:url
91 // Potentially add a new URL to our startup list.
92 void Append(const GURL& url);
104 // List of the first N URL resolutions observed in this run.
195 void AnticipateOmniboxUrl(const GURL& url, bool preconnectable) {
199 if (!url.is_valid() || !url.has_host())
202 g_predictor->AnticipateOmniboxUrl(url, preconnectable);
205 void PreconnectUrlAndSubresources(const GURL& url) {
208 if (!url.is_valid() || !url.has_host())
211 g_predictor->PreconnectUrlAndSubresources(url);
222 void PredictFrameSubresources(const GURL& url) {
226 g_predictor->PredictFrameSubresources(url);
229 void LearnAboutInitialNavigation(const GURL& url) {
233 g_initial_observer->Append(url);
250 void InitialObserver::Append(const GURL& url) {
258 if (url.SchemeIs("http") || url.SchemeIs("https")) {
259 const GURL url_without_path(Predictor::CanonicalizeUrl(url));
527 GURL url(url_spec);
528 if (!url.has_host() || !url.has_scheme()) {
533 urls.push_back(url);