Commit 3cf91d8d authored by Tom Anderson's avatar Tom Anderson Committed by Commit Bot

Fix use_cups=false build

BUG=793801
R=thestig@chromium.org

Change-Id: I60ee6ec48d2686d0b42ca25311a9b76009ce9768
Reviewed-on: https://chromium-review.googlesource.com/823245Reviewed-by: default avatarLei Zhang <thestig@chromium.org>
Commit-Queue: Thomas Anderson <thomasanderson@chromium.org>
Cr-Commit-Position: refs/heads/master@{#523602}
parent 72876dba
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
#include "chrome/service/cloud_print/print_system.h" #include "chrome/service/cloud_print/print_system.h"
#include "base/guid.h" #include "base/guid.h"
#include "build/build_config.h"
namespace cloud_print { namespace cloud_print {
...@@ -35,5 +36,11 @@ std::string PrintSystem::GenerateProxyId() { ...@@ -35,5 +36,11 @@ std::string PrintSystem::GenerateProxyId() {
return base::GenerateGUID(); return base::GenerateGUID();
} }
} // namespace cloud_print #if defined(OS_LINUX) && !defined(USE_CUPS)
scoped_refptr<PrintSystem> PrintSystem::CreateInstance(
const base::DictionaryValue*) {
return nullptr;
}
#endif
} // namespace cloud_print
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment