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 #include "cloud_print/gcp20/prototype/local_print_job.h"
      6 
      7 LocalPrintJob::LocalPrintJob() : offline(false) {
      8 }
      9 
     10 LocalPrintJob::~LocalPrintJob() {
     11 }
     12 
     13 LocalPrintJob::Info::Info() : state(STATE_DRAFT), expires_in(-1) {
     14 }
     15 
     16 LocalPrintJob::Info::~Info() {
     17 }
     18 
     19