[Android] Battery Status API: some tweaks to the BatteryStatusManager.java.
[chromium-blink-merge.git] / printing / backend / print_backend_dummy.cc
blobc73e5370720eda7a2f989401f37dc62c5e438e24
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 there is no
6 // print backend.
7 #if !defined(PRINT_BACKEND_AVAILABLE)
9 #include "printing/backend/print_backend.h"
11 #include "base/logging.h"
12 #include "base/values.h"
14 namespace printing {
16 scoped_refptr<PrintBackend> PrintBackend::CreateInstance(
17 const base::DictionaryValue* print_backend_settings) {
18 NOTREACHED();
19 return NULL;
22 } // namespace printing
24 #endif // PRINT_BACKEND_AVAILABLE