Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / sync / sync_type_preference_provider.h
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SYNC_SYNC_TYPE_PREFERENCE_PROVIDER_H_
6 #define CHROME_BROWSER_SYNC_SYNC_TYPE_PREFERENCE_PROVIDER_H_
7
8 #include "sync/internal_api/public/base/model_type.h"
9
10 class SyncTypePreferenceProvider {
11  public:
12   virtual syncer::ModelTypeSet GetPreferredDataTypes() const = 0;
13
14  protected:
15   virtual ~SyncTypePreferenceProvider() {}
16 };
17
18 #endif  // CHROME_BROWSER_SYNC_SYNC_TYPE_PREFERENCE_PROVIDER_H_