OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 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. | |
4 | |
5 #include "chrome/browser/printing/printer_manager_dialog.h" | |
6 | |
7 #include "base/logging.h" | |
8 | |
9 namespace printing { | |
10 | |
11 void PrinterManagerDialog::ShowPrinterManagerDialog() { | |
12 NOTIMPLEMENTED(); | |
Lei Zhang
2011/04/27 23:46:36
As a starting point, you can run: system-config-pr
kmadhusu
2011/04/28 00:08:26
Thanks for the pointer. I will submit a separate C
| |
13 } | |
14 | |
15 } // namespace printing | |
OLD | NEW |