Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: chrome/common/print_messages.h

Issue 7740005: Print preview not showing if default print is invalid. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Merge with latest trunk (again) Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 // IPC messages for printing. 5 // IPC messages for printing.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintingFailed, 375 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintingFailed,
376 int /* document cookie */) 376 int /* document cookie */)
377 377
378 // Tell the browser print preview failed. 378 // Tell the browser print preview failed.
379 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewFailed, 379 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewFailed,
380 int /* document cookie */) 380 int /* document cookie */)
381 381
382 // Tell the browser print preview was cancelled. 382 // Tell the browser print preview was cancelled.
383 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewCancelled, 383 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewCancelled,
384 int /* document cookie */) 384 int /* document cookie */)
385
386 // Tell the browser print preview found the selected printer has invalid
387 // settings (which typically caused by disconnected network printer or printer
388 // driver is bogus).
389 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewInvalidPrinterSettings,
390 int /* document cookie */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698