Lines Matching refs:cloud_print_server_url

61 GURL GetUrlForSearch(const GURL& cloud_print_server_url) {
62 std::string path(AppendPathToUrl(cloud_print_server_url, "search"));
65 return cloud_print_server_url.ReplaceComponents(replacements);
68 GURL GetUrlForSubmit(const GURL& cloud_print_server_url) {
69 std::string path(AppendPathToUrl(cloud_print_server_url, "submit"));
72 return cloud_print_server_url.ReplaceComponents(replacements);
75 GURL GetUrlForPrinterList(const GURL& cloud_print_server_url,
77 std::string path(AppendPathToUrl(cloud_print_server_url, "list"));
82 return cloud_print_server_url.ReplaceComponents(replacements);
85 GURL GetUrlForPrinterRegistration(const GURL& cloud_print_server_url) {
86 std::string path(AppendPathToUrl(cloud_print_server_url, "register"));
89 return cloud_print_server_url.ReplaceComponents(replacements);
92 GURL GetUrlForPrinterUpdate(const GURL& cloud_print_server_url,
94 std::string path(AppendPathToUrl(cloud_print_server_url, "update"));
99 return cloud_print_server_url.ReplaceComponents(replacements);
102 GURL GetUrlForPrinterDelete(const GURL& cloud_print_server_url,
105 std::string path(AppendPathToUrl(cloud_print_server_url, "delete"));
111 return cloud_print_server_url.ReplaceComponents(replacements);
114 GURL GetUrlForJobFetch(const GURL& cloud_print_server_url,
117 std::string path(AppendPathToUrl(cloud_print_server_url, "fetch"));
123 return cloud_print_server_url.ReplaceComponents(replacements);
126 GURL GetUrlForJobCjt(const GURL& cloud_print_server_url,
129 std::string path(AppendPathToUrl(cloud_print_server_url, "ticket"));
135 return cloud_print_server_url.ReplaceComponents(replacements);
138 GURL GetUrlForJobDelete(const GURL& cloud_print_server_url,
140 std::string path(AppendPathToUrl(cloud_print_server_url, "deletejob"));
145 return cloud_print_server_url.ReplaceComponents(replacements);
148 GURL GetUrlForJobStatusUpdate(const GURL& cloud_print_server_url,
152 std::string path(AppendPathToUrl(cloud_print_server_url, "control"));
159 return cloud_print_server_url.ReplaceComponents(replacements);
162 GURL GetUrlForUserMessage(const GURL& cloud_print_server_url,
164 std::string path(AppendPathToUrl(cloud_print_server_url, "message"));
169 return cloud_print_server_url.ReplaceComponents(replacements);
172 GURL GetUrlForGetAuthCode(const GURL& cloud_print_server_url,
177 std::string path(AppendPathToUrl(cloud_print_server_url, "createrobot"));
184 return cloud_print_server_url.ReplaceComponents(replacements);