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
5package org.chromium.chrome.shell.sync;
6
7import android.app.Application;
8import android.content.Context;
9
10import org.chromium.chrome.browser.sync.ChromiumSyncAdapter;
11import org.chromium.chrome.browser.sync.ChromiumSyncAdapterService;
12
13public class ChromeShellSyncAdapterService extends ChromiumSyncAdapterService {
14    @Override
15    protected ChromiumSyncAdapter createChromiumSyncAdapter(
16            Context context, Application application) {
17        return new ChromeShellSyncAdapter(context, getApplication());
18    }
19}
20