Lines Matching refs:url
6 // before they're handed to a renderer. This lets us do the URL handling
10 // URL schemes don't exist).
23 // dispatching the URL handling to registered handlers.
26 // The type of functions that can process a URL.
27 // If a handler handles |url|, it should :
28 // - optionally modify |url| to the URL that should be sent to the renderer
29 // If the URL is not handled by a handler, it should return false.
30 typedef bool (*URLHandler)(GURL* url, Profile* profile);
33 // the given URL, and modifies it in place.
34 // If the original URL needs to be adjusted if the modified URL is redirected,
36 static void RewriteURLIfNecessary(GURL* url, Profile* profile,
39 // Reverses the rewriting that was done for |original| using the new |url|.
40 static bool ReverseURLRewrite(GURL* url, const GURL& original,