blob: 0d2c67fd362956fc10f7086c73c79fe5cec73158 (
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
|
// 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.
#ifndef CHROME_BROWSER_EXTENSIONS_APP_SYNC_DATA_H_
#define CHROME_BROWSER_EXTENSIONS_APP_SYNC_DATA_H_
#include "chrome/browser/extensions/extension_sync_data.h"
#include "sync/api/string_ordinal.h"
#include "sync/api/sync_change.h"
namespace syncer {
class SyncData;
}
namespace sync_pb {
class AppSpecifics;
}
namespace extensions {
class Extension;
class ExtensionSyncData;
// A class that encapsulates the synced properties of an Application.
class AppSyncData {
public:
AppSyncData();
explicit AppSyncData(const syncer::SyncData& sync_data);
explicit AppSyncData(const syncer::SyncChange& sync_change);
AppSyncData(const Extension& extension,
bool enabled,
bool incognito_enabled,
const syncer::StringOrdinal& app_launch_ordinal,
const syncer::StringOrdinal& page_ordinal);
~AppSyncData();
// Retrive sync data from this class.
syncer::SyncData GetSyncData() const;
syncer::SyncChange GetSyncChange(
syncer::SyncChange::SyncChangeType change_type) const;
const std::string& id() const { return extension_sync_data_.id(); }
bool uninstalled() const { return extension_sync_data_.uninstalled(); }
// These ordinals aren't necessarily valid. Some applications don't have
// valid ordinals because they don't appear on the new tab page.
const syncer::StringOrdinal& app_launch_ordinal() const {
return app_launch_ordinal_;
}
const syncer::StringOrdinal& page_ordinal() const { return page_ordinal_; }
const ExtensionSyncData& extension_sync_data() const {
return extension_sync_data_;
}
private:
// Convert an AppSyncData back out to a sync structure.
void PopulateAppSpecifics(sync_pb::AppSpecifics* specifics) const;
// Populate this class from sync inputs.
void PopulateFromAppSpecifics(
const sync_pb::AppSpecifics& specifics);
void PopulateFromSyncData(const syncer::SyncData& sync_data);
ExtensionSyncData extension_sync_data_;
syncer::StringOrdinal app_launch_ordinal_;
syncer::StringOrdinal page_ordinal_;
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_APP_SYNC_DATA_H_
|