blob: a9b07aff0541683c1915499df3150a992be4df84 (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
// Copyright (c) 2011 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_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_
#pragma once
#include <string>
#include "base/version.h"
#include "chrome/browser/sync/api/sync_change.h"
#include "chrome/browser/sync/api/sync_data.h"
#include "chrome/common/extensions/extension.h"
#include "chrome/common/string_ordinal.h"
#include "googleurl/src/gurl.h"
class SyncData;
namespace sync_pb {
class AppSpecifics;
class ExtensionSpecifics;
}
// TODO(csharp): Split this class up into AppSyncData and ExtensionsSyncData.
// crbug.com/107729
// A class that encapsulates the synced properties of an Extension.
class ExtensionSyncData {
public:
ExtensionSyncData();
explicit ExtensionSyncData(const SyncData& sync_data);
explicit ExtensionSyncData(const SyncChange& sync_change);
ExtensionSyncData(const Extension& extension,
bool enabled,
bool incognito_enabled,
const std::string& notifications_client_id,
bool notifications_disabled,
const StringOrdinal& app_launch_ordinal,
const StringOrdinal& page_ordinal);
~ExtensionSyncData();
// Convert an ExtensionSyncData back out to a sync structure.
void PopulateAppSpecifics(sync_pb::AppSpecifics* specifics) const;
void PopulateExtensionSpecifics(sync_pb::ExtensionSpecifics* specifics) const;
SyncData GetSyncData() const;
SyncChange GetSyncChange(SyncChange::SyncChangeType change_type) const;
const std::string& id() const { return id_; }
// Version-independent properties (i.e., used even when the
// version of the currently-installed extension doesn't match
// |version|).
bool uninstalled() const { return uninstalled_; }
bool enabled() const { return enabled_; }
bool incognito_enabled() const { return incognito_enabled_; }
Extension::SyncType type() const { return type_; }
// These ordinals aren't necessarily valid.
const StringOrdinal& app_launch_ordinal() const {
return app_launch_ordinal_; }
const StringOrdinal& page_ordinal() const {return page_ordinal_; }
// Version-dependent properties (i.e., should be used only when the
// version of the currenty-installed extension matches |version|).
const Version& version() const { return version_; }
const GURL& update_url() const { return update_url_; }
// Used only for debugging.
const std::string& name() const { return name_; }
const std::string& notifications_client_id() const {
return notifications_client_id_;
}
bool notifications_disabled() const {
return notifications_disabled_;
}
private:
void PopulateFromAppSpecifics(
const sync_pb::AppSpecifics& specifics);
void PopulateFromExtensionSpecifics(
const sync_pb::ExtensionSpecifics& specifics);
void PopulateFromSyncData(const SyncData& sync_data);
std::string id_;
bool uninstalled_;
bool enabled_;
bool incognito_enabled_;
Extension::SyncType type_;
Version version_;
GURL update_url_;
std::string name_;
std::string notifications_client_id_;
bool notifications_disabled_;
StringOrdinal app_launch_ordinal_;
StringOrdinal page_ordinal_;
};
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_
|