diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-08 20:39:01 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-08 20:39:01 +0000 |
commit | fa879e510a7904d2f6e0072a492958ef4eb29d83 (patch) | |
tree | 65e60a1463b1a990f19464a278a1cd0066e30791 /printing/print_settings.h | |
parent | 4b3d192b4f437336378b175372b417451943ab93 (diff) | |
download | chromium_src-fa879e510a7904d2f6e0072a492958ef4eb29d83.zip chromium_src-fa879e510a7904d2f6e0072a492958ef4eb29d83.tar.gz chromium_src-fa879e510a7904d2f6e0072a492958ef4eb29d83.tar.bz2 |
Linux: Don't call printing::GetColorModelForMode() when USE_CUPS is not defined.
BUG=103183
TEST=none
Review URL: http://codereview.chromium.org/8496004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109091 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/print_settings.h')
-rw-r--r-- | printing/print_settings.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/printing/print_settings.h b/printing/print_settings.h index 07d2c54..44d6aa5 100644 --- a/printing/print_settings.h +++ b/printing/print_settings.h @@ -20,11 +20,11 @@ namespace printing { // Returns true if color model is selected. PRINTING_EXPORT bool isColorModelSelected(int model); -#if defined (USE_CUPS) - // Get the color model setting name and value for the |color_mode|. - PRINTING_EXPORT void GetColorModelForMode(int color_mode, - std::string* color_setting_name, - std::string* color_value); +#if defined(USE_CUPS) +// Get the color model setting name and value for the |color_mode|. +PRINTING_EXPORT void GetColorModelForMode(int color_mode, + std::string* color_setting_name, + std::string* color_value); #endif // OS-independent print settings. |