Chromium Code Reviews| 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..9de14f38616e3b707812179414ec1271aef8136f 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,8 @@ 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) { |
|
skau
2017/04/11 16:59:37
Can you comment this as unused for now?
Carlson
2017/04/11 19:06:49
Done.
|
| DCHECK_CURRENTLY_ON(content::BrowserThread::UI); |
| switch (result) { |
| case chromeos::printing::PpdProvider::SUCCESS: |