Avoid crashing when going back/forward to debug URLs on a sad WebUI tab.
[chromium-blink-merge.git] / chrome / service / cloud_print / print_system_dummy.cc
blob69f108934953d882d94c5b09ece530146cddadd6
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // This is dummy implementation for all configurations where print system
6 // for cloud print is not available.
8 #include "chrome/service/cloud_print/print_system.h"
10 #include "base/logging.h"
12 namespace cloud_print {
14 scoped_refptr<PrintSystem> PrintSystem::CreateInstance(
15 const base::DictionaryValue* print_system_settings) {
16 NOTREACHED();
17 return NULL;
19 } // namespace cloud_print