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

  /external/chromium_org/chrome/common/cloud_print/
cloud_print_helpers_unittest.cc 82 PrinterTags printer_tags; local
83 printer_tags["tag1"] = std::string("value1");
84 printer_tags["tag2"] = std::string("value2");
93 GetHashOfPrinterTags(printer_tags));
97 PrinterTags printer_tags; local
98 printer_tags["tag1"] = std::string("value1");
99 printer_tags["tag2"] = std::string("value2");
118 GetHashOfPrinterTags(printer_tags).c_str());
121 printer_tags,
cloud_print_helpers.cc 24 // Returns printer tags generated from |printer_tags| and the default tags
26 PrinterTags PreparePrinterTags(const PrinterTags& printer_tags) {
27 PrinterTags printer_tags_out = printer_tags;
39 // Returns the hash of |printer_tags|.
40 std::string HashPrinterTags(const PrinterTags& printer_tags) {
43 for (it = printer_tags.begin(); it != printer_tags.end(); ++it) {
216 std::string GetHashOfPrinterTags(const PrinterTags& printer_tags) {
217 return HashPrinterTags(PreparePrinterTags(printer_tags));
221 const PrinterTags& printer_tags,
    [all...]
cloud_print_helpers.h 76 // Returns an MD5 hash for |printer_tags| and the default required tags.
77 std::string GetHashOfPrinterTags(const PrinterTags& printer_tags);
79 // Returns the post data for |printer_tags| and the default required tags.
81 const PrinterTags& printer_tags,

Completed in 2258 milliseconds