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

Unified Diff: chrome/service/cloud_print/printer_job_handler.h

Issue 5736004: Added 'dry run' tag to the print job, to test proxy health without wasting pa... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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 | « chrome/service/cloud_print/print_system_win.cc ('k') | chrome/service/cloud_print/printer_job_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/cloud_print/printer_job_handler.h
===================================================================
--- chrome/service/cloud_print/printer_job_handler.h (revision 68909)
+++ chrome/service/cloud_print/printer_job_handler.h (working copy)
@@ -8,6 +8,7 @@
#include <list>
#include <string>
+#include <vector>
#include "base/file_path.h"
#include "base/ref_counted.h"
@@ -77,12 +78,14 @@
std::string print_ticket_;
FilePath print_data_file_path_;
std::string print_data_mime_type_;
+ std::vector<std::string> tags_;
void Clear() {
job_id_.clear();
job_title_.clear();
print_ticket_.clear();
print_data_mime_type_.clear();
print_data_file_path_ = FilePath();
+ tags_.clear();
}
};
« no previous file with comments | « chrome/service/cloud_print/print_system_win.cc ('k') | chrome/service/cloud_print/printer_job_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698