Index: cloud_print/gcp20/prototype/printjob_handler.h |
diff --git a/cloud_print/gcp20/prototype/printjob_handler.h b/cloud_print/gcp20/prototype/printjob_handler.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9828b6d428f5492ace8ed3d6f2f37c8ad0c63c95 |
--- /dev/null |
+++ b/cloud_print/gcp20/prototype/printjob_handler.h |
@@ -0,0 +1,25 @@ |
+// 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_PRINTJOB_HANDLER_H_ |
+#define CLOUD_PRINT_GCP20_PROTOTYPE_PRINTJOB_HANDLER_H_ |
+ |
+#include <string> |
+ |
+#include "base/basictypes.h" |
+ |
+class PrintjobHandler { |
Vitaly Buka (NO REVIEWS)
2013/07/22 03:57:31
PrintJobHandler
maksymb
2013/07/22 22:56:53
Done.
|
+ public: |
+ PrintjobHandler(); |
+ ~PrintjobHandler(); |
+ |
+ bool SavePrintjob(const std::string& ticket, const std::string& data, |
+ const std::string& jobid, const std::string& title); |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(PrintjobHandler); |
+}; |
+ |
+#endif // CLOUD_PRINT_GCP20_PROTOTYPE_PRINTJOB_HANDLER_H_ |
+ |