OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_cairo.h" | 5 #include "printing/printing_context_cairo.h" |
6 | 6 |
7 #include <gtk/gtk.h> | 7 #include <gtk/gtk.h> |
8 #include <gtk/gtkprintunixdialog.h> | 8 #include <gtk/gtkprintunixdialog.h> |
9 #include <unicode/ulocdata.h> | 9 #include <unicode/ulocdata.h> |
10 | 10 |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 return FAILED; | 151 return FAILED; |
152 } | 152 } |
153 | 153 |
154 void PrintingContextCairo::Cancel() { | 154 void PrintingContextCairo::Cancel() { |
155 abort_printing_ = true; | 155 abort_printing_ = true; |
156 in_print_job_ = false; | 156 in_print_job_ = false; |
157 | 157 |
158 NOTIMPLEMENTED(); | 158 NOTIMPLEMENTED(); |
159 } | 159 } |
160 | 160 |
161 void PrintingContextCairo::DismissDialog() { | |
162 NOTIMPLEMENTED(); | |
163 } | |
164 | |
165 void PrintingContextCairo::ReleaseContext() { | 161 void PrintingContextCairo::ReleaseContext() { |
166 // Nothing to do yet. | 162 // Nothing to do yet. |
167 } | 163 } |
168 | 164 |
169 gfx::NativeDrawingContext PrintingContextCairo::context() const { | 165 gfx::NativeDrawingContext PrintingContextCairo::context() const { |
170 return NULL; | 166 return NULL; |
171 } | 167 } |
172 | 168 |
173 } // namespace printing | 169 } // namespace printing |
OLD | NEW |