summaryrefslogtreecommitdiffstats
path: root/printing/backend
diff options
context:
space:
mode:
authorscottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-29 16:47:58 +0000
committerscottbyer@chromium.org <scottbyer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-29 16:47:58 +0000
commit71be19b75c1366de0387a78f4623df2f5bf21745 (patch)
tree0f5ef8118ec09ea1df12916c9f637feaa11fef49 /printing/backend
parentcf7e0777048a9cb4b8201d691a20a24f40a0d6b7 (diff)
downloadchromium_src-71be19b75c1366de0387a78f4623df2f5bf21745.zip
chromium_src-71be19b75c1366de0387a78f4623df2f5bf21745.tar.gz
chromium_src-71be19b75c1366de0387a78f4623df2f5bf21745.tar.bz2
Mac cloud print proxy work.
Turn on use_cups for the Mac, add in the required library, and tweak the code to get it linking. There is still more work to do; this is just a gyp-oriented change to get things started. BUG=none TEST=All targets still build on all platforms. Review URL: http://codereview.chromium.org/4167006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64441 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/backend')
-rw-r--r--printing/backend/print_backend_cups.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/printing/backend/print_backend_cups.cc b/printing/backend/print_backend_cups.cc
index 9693299..09fdf1d 100644
--- a/printing/backend/print_backend_cups.cc
+++ b/printing/backend/print_backend_cups.cc
@@ -6,7 +6,9 @@
#include <dlfcn.h>
#include <errno.h>
+#if !defined(OS_MACOSX)
#include <gcrypt.h>
+#endif
#include <pthread.h>
#include "base/file_util.h"
@@ -18,6 +20,7 @@
#include "googleurl/src/gurl.h"
#include "printing/backend/cups_helper.h"
+#if !defined(OS_MACOSX)
GCRY_THREAD_OPTION_PTHREAD_IMPL;
namespace {
@@ -64,6 +67,7 @@ class GcryptInitializer {
};
} // namespace
+#endif
namespace printing {
@@ -182,8 +186,10 @@ bool PrintBackendCUPS::IsValidPrinter(const std::string& printer_name) {
scoped_refptr<PrintBackend> PrintBackend::CreateInstance(
const DictionaryValue* print_backend_settings) {
+#if !defined(OS_MACOSX)
// Initialize gcrypt library.
Singleton<GcryptInitializer>::get();
+#endif
std::string print_server_url_str;
if (print_backend_settings) {