root/chrome/service/cloud_print/print_system_dummy.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. CreateInstance

// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// This is dummy implementation for all configurations where print system
// for cloud print is not available.

#include "chrome/service/cloud_print/print_system.h"

#include "base/logging.h"

namespace cloud_print {

scoped_refptr<PrintSystem> PrintSystem::CreateInstance(
    const base::DictionaryValue* print_system_settings) {
  NOTREACHED();
  return NULL;
}
}  // namespace cloud_print


/* [<][>][^][v][top][bottom][index][help] */