| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "printing/printing_context_gtk.h" | 5 #include "printing/printing_context_gtk.h" |
| 6 | 6 |
| 7 #include <gtk/gtk.h> | 7 #include <gtk/gtk.h> |
| 8 #include <gtk/gtkprintunixdialog.h> | 8 #include <gtk/gtkunixprint.h> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/values.h" | 11 #include "base/values.h" |
| 12 #include "printing/metafile.h" | 12 #include "printing/metafile.h" |
| 13 #include "printing/print_dialog_gtk_interface.h" | 13 #include "printing/print_dialog_gtk_interface.h" |
| 14 #include "printing/print_job_constants.h" | 14 #include "printing/print_job_constants.h" |
| 15 #include "printing/units.h" | 15 #include "printing/units.h" |
| 16 | 16 |
| 17 namespace { | 17 namespace { |
| 18 // Function pointer for creating print dialogs. |callback| is only used when | 18 // Function pointer for creating print dialogs. |callback| is only used when |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 // Intentional No-op. | 148 // Intentional No-op. |
| 149 } | 149 } |
| 150 | 150 |
| 151 gfx::NativeDrawingContext PrintingContextGtk::context() const { | 151 gfx::NativeDrawingContext PrintingContextGtk::context() const { |
| 152 // Intentional No-op. | 152 // Intentional No-op. |
| 153 return NULL; | 153 return NULL; |
| 154 } | 154 } |
| 155 | 155 |
| 156 } // namespace printing | 156 } // namespace printing |
| 157 | 157 |
| OLD | NEW |