Chromium Code Reviews| 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..edb24b5576fad1aaf4f78e395c97d30513d7b64e |
| --- /dev/null |
| +++ b/cloud_print/gcp20/prototype/print_job_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_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, |
|
Vitaly Buka (NO REVIEWS)
2013/07/22 23:46:02
line break before every param
maksymb
2013/07/23 00:40:38
Done.
|
| + const std::string& job_name, const std::string& title); |
| + |
| + private: |
| + DISALLOW_COPY_AND_ASSIGN(PrintJobHandler); |
| +}; |
| + |
| +#endif // CLOUD_PRINT_GCP20_PROTOTYPE_PRINT_JOB_HANDLER_H_ |
| + |