Chromium Code Reviews| Index: printing/print_destination_interface_none.cc |
| diff --git a/printing/print_destination_interface_none.cc b/printing/print_destination_interface_none.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..66b838ef257218827cac56f57d25442a5c407260 |
| --- /dev/null |
| +++ b/printing/print_destination_interface_none.cc |
| @@ -0,0 +1,13 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
|
Albert Bodenhamer
2012/06/28 19:38:02
Provides a no-op implementation, but still an impl
MAD
2012/06/28 19:52:08
Done.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "printing/print_destination_interface.h" |
| + |
| +namespace printing { |
| + |
| +PrintDestinationInterface* CreatePrintDestination() { |
| + return NULL; |
| +} |
| + |
| +} // namespace printing |