Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(415)

Unified Diff: printing/print_settings.h

Issue 8496004: Linux: Don't call printing::GetColorModelForMode() when USE_CUPS is not defined. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: printing/print_settings.h
===================================================================
--- printing/print_settings.h (revision 108912)
+++ printing/print_settings.h (working copy)
@@ -20,11 +20,11 @@
// 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.

Powered by Google App Engine
This is Rietveld 408576698