| Index: chrome/browser/extensions/api/cloud_print_private/cloud_print_private_api.cc
|
| diff --git a/chrome/browser/extensions/api/cloud_print_private/cloud_print_private_api.cc b/chrome/browser/extensions/api/cloud_print_private/cloud_print_private_api.cc
|
| index e094f7a80be9af5a034ccd52f98a5c83e3b36b70..74fdde849457a8e62bf750b0b81438537006c492 100644
|
| --- a/chrome/browser/extensions/api/cloud_print_private/cloud_print_private_api.cc
|
| +++ b/chrome/browser/extensions/api/cloud_print_private/cloud_print_private_api.cc
|
| @@ -38,7 +38,7 @@ CloudPrintPrivateSetupConnectorFunction::
|
| }
|
|
|
| bool CloudPrintPrivateSetupConnectorFunction::RunAsync() {
|
| -#if defined(ENABLE_FULL_PRINTING)
|
| +#if defined(ENABLE_PRINT_PREVIEW)
|
| using api::cloud_print_private::SetupConnector::Params;
|
| scoped_ptr<Params> params(Params::Create(*args_));
|
| if (CloudPrintTestsDelegate::instance()) {
|
| @@ -94,7 +94,7 @@ void CloudPrintPrivateGetPrintersFunction::SendResults(
|
| }
|
|
|
| bool CloudPrintPrivateGetPrintersFunction::RunAsync() {
|
| -#if defined(ENABLE_FULL_PRINTING)
|
| +#if defined(ENABLE_PRINT_PREVIEW)
|
| std::vector<std::string> result;
|
| if (CloudPrintTestsDelegate::instance()) {
|
| SendResults(CloudPrintTestsDelegate::instance()->GetPrinters());
|
|
|