Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(409)

Side by Side Diff: chrome/browser/printing/cloud_print/cloud_print_printer_list.cc

Issue 2511683002: Remove unneeded stringprintf.h usage in chrome/ and net/ (Closed)
Patch Set: rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/printing/cloud_print/cloud_print_printer_list.h" 5 #include "chrome/browser/printing/cloud_print/cloud_print_printer_list.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/strings/stringprintf.h"
10 #include "chrome/common/cloud_print/cloud_print_constants.h" 9 #include "chrome/common/cloud_print/cloud_print_constants.h"
11 #include "components/cloud_devices/common/cloud_devices_urls.h" 10 #include "components/cloud_devices/common/cloud_devices_urls.h"
12 11
13 namespace cloud_print { 12 namespace cloud_print {
14 13
15 CloudPrintPrinterList::Device::Device() {} 14 CloudPrintPrinterList::Device::Device() {}
16 15
17 CloudPrintPrinterList::Device::~Device() {} 16 CloudPrintPrinterList::Device::~Device() {}
18 17
19 CloudPrintPrinterList::Delegate::Delegate() {} 18 CloudPrintPrinterList::Delegate::Delegate() {}
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 } 73 }
75 74
76 // Non-essential. 75 // Non-essential.
77 printer_value.GetString(cloud_print::kPrinterDescValue, 76 printer_value.GetString(cloud_print::kPrinterDescValue,
78 &printer_details->description); 77 &printer_details->description);
79 78
80 return true; 79 return true;
81 } 80 }
82 81
83 } // namespace cloud_print 82 } // namespace cloud_print
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698