summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/sync_helper.h
blob: c3c3741a3b8e11f993c0ec897de4d4a20bd21d72 (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
// Copyright 2013 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_COMMON_EXTENSIONS_SYNC_HELPER_H_
#define CHROME_COMMON_EXTENSIONS_SYNC_HELPER_H_

namespace extensions {

class Extension;

namespace sync_helper {

// NOTE: The check in the functions here only considers the data in extension
// itself, not the environment it is in. To determine whether an extension
// should be synced, you probably want to use util::ShouldSync.

// Returns true if |extension| should be synced.
bool IsSyncable(const Extension* extension);

// Component extensions usually aren't synced, but some are so that they'll
// retain their position in the app list. Returns true for component extensions
// on that whitelist.
bool IsSyncableComponentExtension(const Extension* extension);

}  // namespace sync_helper
}  // namespace extensions

#endif  // CHROME_COMMON_EXTENSIONS_SYNC_HELPER_H_