Index: cloud_print/gcp20/prototype/print_job_handler.h |
diff --git a/cloud_print/gcp20/prototype/print_job_handler.h b/cloud_print/gcp20/prototype/print_job_handler.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..594e5a23783557564822d29477a19ee9165621a9 |
--- /dev/null |
+++ b/cloud_print/gcp20/prototype/print_job_handler.h |
@@ -0,0 +1,27 @@ |
+// Copyright 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CLOUD_PRINT_GCP20_PROTOTYPE_PRINT_JOB_HANDLER_H_ |
+#define CLOUD_PRINT_GCP20_PROTOTYPE_PRINT_JOB_HANDLER_H_ |
+ |
+#include <string> |
+ |
+#include "base/basictypes.h" |
+ |
+class PrintJobHandler { |
+ public: |
+ PrintJobHandler(); |
+ ~PrintJobHandler(); |
+ |
+ bool SavePrintJob(const std::string& data, |
+ const std::string& ticket, |
+ const std::string& job_name, |
+ const std::string& title); |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(PrintJobHandler); |
+}; |
+ |
+#endif // CLOUD_PRINT_GCP20_PROTOTYPE_PRINT_JOB_HANDLER_H_ |
+ |