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

Unified Diff: cloud_print/gcp20/prototype/local_print_job.h

Issue 23271004: GCP2.0 Device: Adding advanced printing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@local-printing
Patch Set: Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cloud_print/gcp20/prototype/gcp20_device.cc ('k') | cloud_print/gcp20/prototype/local_print_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/gcp20/prototype/local_print_job.h
diff --git a/cloud_print/gcp20/prototype/local_print_job.h b/cloud_print/gcp20/prototype/local_print_job.h
index b28e024423a447d03846fc4ac8dfe70d265414ba..4959affaa6b7d6670f8775e99f709c2ac564a056 100644
--- a/cloud_print/gcp20/prototype/local_print_job.h
+++ b/cloud_print/gcp20/prototype/local_print_job.h
@@ -25,6 +25,20 @@ struct LocalPrintJob {
SAVE_PRINTER_ERROR,
};
+ enum State {
+ STATE_DRAFT,
+ STATE_ABORTED,
+ STATE_DONE,
+ };
+
+ struct Info {
+ Info();
+ ~Info();
+
+ State state;
+ int expires_in;
+ };
+
LocalPrintJob();
~LocalPrintJob();
« no previous file with comments | « cloud_print/gcp20/prototype/gcp20_device.cc ('k') | cloud_print/gcp20/prototype/local_print_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698