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/printed_document.h" | 5 #include "printing/printed_document.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 base::TaskRunner* blocking_runner) | 256 base::TaskRunner* blocking_runner) |
257 : settings_(settings), | 257 : settings_(settings), |
258 name_(source->RenderSourceName()), | 258 name_(source->RenderSourceName()), |
259 cookie_(cookie), | 259 cookie_(cookie), |
260 blocking_runner_(blocking_runner) { | 260 blocking_runner_(blocking_runner) { |
261 } | 261 } |
262 | 262 |
263 PrintedDocument::Immutable::~Immutable() { | 263 PrintedDocument::Immutable::~Immutable() { |
264 } | 264 } |
265 | 265 |
266 #if defined(OS_CHROMEOS) || defined(OS_ANDROID) | 266 #if defined(OS_ANDROID) |
267 // This function is not used on aura linux/chromeos or android. | 267 // This function is not used on android. |
268 void PrintedDocument::RenderPrintedPage(const PrintedPage& page, | 268 void PrintedDocument::RenderPrintedPage(const PrintedPage& page, |
269 PrintingContext* context) const { | 269 PrintingContext* context) const { |
270 } | 270 } |
271 #endif | 271 #endif |
272 | 272 |
273 } // namespace printing | 273 } // namespace printing |
OLD | NEW |