blob: 4603d13d38b776dac3ea10765777c0659ea40551 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// Copyright (c) 2010 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 CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_PROXY_H_
#define CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_PROXY_H_
#include <string>
#include "base/basictypes.h"
#include "base/non_thread_safe.h"
#include "base/scoped_ptr.h"
#include "chrome/service/cloud_print/cloud_print_proxy_backend.h"
class JsonPrefStore;
// CloudPrintProxy is the layer between the service process UI thread
// and the cloud print proxy backend.
class CloudPrintProxy : public CloudPrintProxyFrontend,
public NonThreadSafe {
public:
CloudPrintProxy();
virtual ~CloudPrintProxy();
// Initializes the object. This should be called every time an object of this
// class is constructed.
void Initialize(JsonPrefStore* service_prefs);
// Enables/disables cloud printing for the user
virtual void EnableForUser(const std::string& lsid);
virtual void DisableForUser();
// Notification methods from the backend. Called on UI thread.
virtual void OnPrinterListAvailable(
const cloud_print::PrinterList& printer_list);
virtual void OnAuthenticated(const std::string& cloud_print_token,
const std::string& cloud_print_xmpp_token,
const std::string& email);
protected:
void Shutdown();
// Our asynchronous backend to communicate with sync components living on
// other threads.
scoped_ptr<CloudPrintProxyBackend> backend_;
// This class does not own this. It is guaranteed to remain valid for the
// lifetime of this class.
JsonPrefStore* service_prefs_;
DISALLOW_COPY_AND_ASSIGN(CloudPrintProxy);
};
#endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_PROXY_H_
|