1 | // Copyright 2013 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 | package org.chromium.chrome.testshell.sync; |
6 | |
7 | import android.app.Application; |
8 | import android.content.Context; |
9 | |
10 | import org.chromium.chrome.browser.sync.ChromiumSyncAdapter; |
11 | import org.chromium.chrome.testshell.ChromiumTestShellApplication; |
12 | |
13 | public class ChromiumTestShellSyncAdapter extends ChromiumSyncAdapter { |
14 | public ChromiumTestShellSyncAdapter(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 | ChromiumTestShellApplication.initCommandLine(); |
26 | } |
27 | } |