Home | History | Annotate | Download | only in prototype
      1 // Copyright 2013 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef CLOUD_PRINT_GCP20_PROTOTYPE_PRINT_JOB_HANDLER_H_
      6 #define CLOUD_PRINT_GCP20_PROTOTYPE_PRINT_JOB_HANDLER_H_
      7 
      8 #include <string>
      9 
     10 #include "base/basictypes.h"
     11 
     12 class PrintJobHandler {
     13  public:
     14   PrintJobHandler();
     15   ~PrintJobHandler();
     16 
     17   bool SavePrintJob(const std::string& data,
     18                     const std::string& ticket,
     19                     const std::string& job_name,
     20                     const std::string& title);
     21 
     22  private:
     23   DISALLOW_COPY_AND_ASSIGN(PrintJobHandler);
     24 };
     25 
     26 #endif  // CLOUD_PRINT_GCP20_PROTOTYPE_PRINT_JOB_HANDLER_H_
     27 
     28