| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2010 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 "chrome/service/cloud_print/cloud_print_proxy.h" |
| 6 |
| 7 CloudPrintProxy::CloudPrintProxy() { |
| 8 } |
| 9 |
| 10 CloudPrintProxy::~CloudPrintProxy() { |
| 11 Shutdown(); |
| 12 } |
| 13 |
| 14 void CloudPrintProxy::Initialize() { |
| 15 } |
| 16 |
| 17 |
| 18 void CloudPrintProxy::EnableForUser(const std::string& lsid, |
| 19 const std::string& proxy_id) { |
| 20 } |
| 21 |
| 22 void CloudPrintProxy::DisableForUser() { |
| 23 Shutdown(); |
| 24 } |
| 25 |
| 26 void CloudPrintProxy::HandlePrinterNotification( |
| 27 const std::string& printer_id) { |
| 28 } |
| 29 |
| 30 void CloudPrintProxy::Shutdown() { |
| 31 } |
| 32 |
| OLD | NEW |