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.shell.ChromeShellApplication;
12
13public class ChromeShellSyncAdapter extends ChromiumSyncAdapter {
14    public ChromeShellSyncAdapter(Context appContext, Application application) {
15        super(appContext, application);
16    }
17
18    @Override
19    protected boolean useAsyncStartup() {
20        return true;
21    }
22
23    @Override
24    protected void initCommandLine() {
25        ChromeShellApplication.initCommandLine();
26    }
27}
28