- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / android / testshell / java / src / org / chromium / chrome / testshell / sync / ChromiumTestShellSyncAdapterService.java
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.browser.sync.ChromiumSyncAdapterService;
12
13 public class ChromiumTestShellSyncAdapterService extends ChromiumSyncAdapterService {
14     @Override
15     protected ChromiumSyncAdapter createChromiumSyncAdapter(
16             Context context, Application application) {
17         return new ChromiumTestShellSyncAdapter(context, getApplication());
18     }
19 }