blob: 36399ca129108250d46f264bb97372b6ed000a84 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
// 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_
#pragma once
#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:
class Client {
public:
virtual ~Client() {}
virtual void OnCloudPrintProxyEnabled() {}
virtual void OnCloudPrintProxyDisabled() {}
};
CloudPrintProxy();
virtual ~CloudPrintProxy();
// Initializes the object. This should be called every time an object of this
// class is constructed.
void Initialize(JsonPrefStore* service_prefs, Client* client);
// Enables/disables cloud printing for the user
void EnableForUser(const std::string& lsid);
void DisableForUser();
// Returns the enabled stata of the proxy. If enabled, the email address used
// for authentication is also returned in the optional |email| argument.
bool IsEnabled(std::string* email) const;
const std::string& cloud_print_email() const {
return cloud_print_email_;
}
// Notification methods from the backend. Called on UI thread.
virtual void OnPrinterListAvailable(
const printing::PrinterList& printer_list);
virtual void OnAuthenticated(const std::string& cloud_print_token,
const std::string& cloud_print_xmpp_token,
const std::string& email);
virtual void OnAuthenticationFailed();
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_;
// This class does not own this. If non-NULL, It is guaranteed to remain
// valid for the lifetime of this class.
Client* client_;
// The email address of the account used to authenticate to the Cloud Print
// service.
std::string cloud_print_email_;
DISALLOW_COPY_AND_ASSIGN(CloudPrintProxy);
};
#endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_PROXY_H_
|