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

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: Update per code review 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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintingFailed, 372 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintingFailed,
373 int /* document cookie */) 373 int /* document cookie */)
374 374
375 // Tell the browser print preview failed. 375 // Tell the browser print preview failed.
376 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewFailed, 376 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewFailed,
377 int /* document cookie */) 377 int /* document cookie */)
378 378
379 // Tell the browser print preview was cancelled. 379 // Tell the browser print preview was cancelled.
380 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewCancelled, 380 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewCancelled,
381 int /* document cookie */) 381 int /* document cookie */)
382
383 // Tell the browser print preview found the selected printer has invalid
384 // settings (which typically caused by disconnected network printer or printer
385 // driver is bogus).
386 IPC_MESSAGE_ROUTED1(PrintHostMsg_PrintPreviewInvalidPrinterSettings,
387 int /* document cookie */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698