| Index: chrome/service/cloud_print/print_system_cups.cc
|
| diff --git a/chrome/service/cloud_print/print_system_cups.cc b/chrome/service/cloud_print/print_system_cups.cc
|
| index f1c3fa31b2c91c7dd5be26262d33de773cb04b2d..0fb19d4dca08e11f2d313c51ae7438b8b4b6e40f 100644
|
| --- a/chrome/service/cloud_print/print_system_cups.cc
|
| +++ b/chrome/service/cloud_print/print_system_cups.cc
|
| @@ -26,7 +26,7 @@
|
| #include "base/utf_string_conversions.h"
|
| #include "base/values.h"
|
| #include "chrome/common/child_process_logging.h"
|
| -#include "chrome/service/cloud_print/cloud_print_consts.h"
|
| +#include "chrome/common/cloud_print/cloud_print_constants.h"
|
| #include "chrome/service/cloud_print/cloud_print_helpers.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "grit/generated_resources.h"
|
| @@ -786,7 +786,7 @@ PlatformJobId PrintSystemCUPS::SpoolPrintJob(
|
| DCHECK(res); // If print ticket is invalid we still print using defaults.
|
|
|
| // Check if this is a dry run (test) job.
|
| - *dry_run = CloudPrintHelpers::IsDryRunJob(tags);
|
| + *dry_run = IsDryRunJob(tags);
|
| if (*dry_run) {
|
| VLOG(1) << "CP_CUPS: Dry run job spooled";
|
| return kDryRunJobId;
|
|
|