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
99
|
// Copyright (c) 2012 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.
#include "chrome/browser/extensions/app_sync_data.h"
#include "chrome/common/extensions/extension.h"
#include "sync/api/sync_data.h"
#include "sync/protocol/app_specifics.pb.h"
#include "sync/protocol/sync.pb.h"
namespace extensions {
AppSyncData::AppSyncData() : notifications_disabled_(false) {}
AppSyncData::AppSyncData(const syncer::SyncData& sync_data)
: notifications_disabled_(false) {
PopulateFromSyncData(sync_data);
}
AppSyncData::AppSyncData(const syncer::SyncChange& sync_change)
: notifications_disabled_(false) {
PopulateFromSyncData(sync_change.sync_data());
extension_sync_data_.set_uninstalled(
sync_change.change_type() == syncer::SyncChange::ACTION_DELETE);
}
AppSyncData::AppSyncData(const Extension& extension,
bool enabled,
bool incognito_enabled,
const std::string& notifications_client_id,
bool notifications_disabled,
const syncer::StringOrdinal& app_launch_ordinal,
const syncer::StringOrdinal& page_ordinal)
: extension_sync_data_(extension, enabled, incognito_enabled),
notifications_client_id_(notifications_client_id),
notifications_disabled_(notifications_disabled),
app_launch_ordinal_(app_launch_ordinal),
page_ordinal_(page_ordinal) {
}
AppSyncData::~AppSyncData() {}
syncer::SyncData AppSyncData::GetSyncData() const {
sync_pb::EntitySpecifics specifics;
PopulateAppSpecifics(specifics.mutable_app());
return syncer::SyncData::CreateLocalData(extension_sync_data_.id(),
extension_sync_data_.name(),
specifics);
}
syncer::SyncChange AppSyncData::GetSyncChange(
syncer::SyncChange::SyncChangeType change_type) const {
return syncer::SyncChange(FROM_HERE, change_type, GetSyncData());
}
void AppSyncData::PopulateAppSpecifics(sync_pb::AppSpecifics* specifics) const {
DCHECK(specifics);
sync_pb::AppNotificationSettings* notification_settings =
specifics->mutable_notification_settings();
if (!notifications_client_id_.empty())
notification_settings->set_oauth_client_id(notifications_client_id_);
notification_settings->set_disabled(notifications_disabled_);
// Only sync the ordinal values if they are valid.
if (app_launch_ordinal_.IsValid())
specifics->set_app_launch_ordinal(app_launch_ordinal_.ToInternalValue());
if (page_ordinal_.IsValid())
specifics->set_page_ordinal(page_ordinal_.ToInternalValue());
extension_sync_data_.PopulateExtensionSpecifics(
specifics->mutable_extension());
}
void AppSyncData::PopulateFromAppSpecifics(
const sync_pb::AppSpecifics& specifics) {
extension_sync_data_.PopulateFromExtensionSpecifics(specifics.extension());
if (specifics.has_notification_settings() &&
specifics.notification_settings().has_oauth_client_id()) {
notifications_client_id_ =
specifics.notification_settings().oauth_client_id();
}
notifications_disabled_ =
specifics.has_notification_settings() &&
specifics.notification_settings().has_disabled() &&
specifics.notification_settings().disabled();
app_launch_ordinal_ = syncer::StringOrdinal(specifics.app_launch_ordinal());
page_ordinal_ = syncer::StringOrdinal(specifics.page_ordinal());
}
void AppSyncData::PopulateFromSyncData(const syncer::SyncData& sync_data) {
PopulateFromAppSpecifics(sync_data.GetSpecifics().app());
}
} // namespace extensions
|