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

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

Issue 19866002: GCP2.0 Device: Receiving printjobs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@confirmation
Patch Set: Created 7 years, 5 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
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_
+

Powered by Google App Engine
This is Rietveld 408576698