| Index: chrome/browser/chromeos/printing/printer_configurer.cc
|
| diff --git a/chrome/browser/chromeos/printing/printer_configurer.cc b/chrome/browser/chromeos/printing/printer_configurer.cc
|
| index f2f2e02a06426692186d3e3dafe35cfa7df2033a..a7c812b84ba348ea0097c210bac4ab44ac8b8d4b 100644
|
| --- a/chrome/browser/chromeos/printing/printer_configurer.cc
|
| +++ b/chrome/browser/chromeos/printing/printer_configurer.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include <memory>
|
| #include <string>
|
| +#include <vector>
|
|
|
| #include "base/bind.h"
|
| #include "base/callback.h"
|
| @@ -119,7 +120,10 @@ class PrinterConfigurerImpl : public PrinterConfigurer {
|
| void ResolvePpdDone(const Printer& printer,
|
| const PrinterSetupCallback& cb,
|
| printing::PpdProvider::CallbackResultCode result,
|
| - const std::string& ppd_contents) {
|
| + const std::string& ppd_contents,
|
| + const std::vector<std::string>& ppd_filters) {
|
| + // TODO(justincarlson) - Use ppd_filters to invoke cups components downloads
|
| + // if needed.
|
| DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
| switch (result) {
|
| case chromeos::printing::PpdProvider::SUCCESS:
|
|
|