EMMA Coverage Report (generated Fri Aug 23 16:39:17 PDT 2013)
[all classes][org.chromium.chrome.testshell.sync]

COVERAGE SUMMARY FOR SOURCE FILE [ChromiumTestShellSyncAdapter.java]

nameclass, %method, %block, %line, %
ChromiumTestShellSyncAdapter.java0%   (0/1)0%   (0/3)0%   (0/9)0%   (0/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ChromiumTestShellSyncAdapter0%   (0/1)0%   (0/3)0%   (0/9)0%   (0/5)
ChromiumTestShellSyncAdapter (Context, Application): void 0%   (0/1)0%   (0/5)0%   (0/2)
initCommandLine (): void 0%   (0/1)0%   (0/2)0%   (0/2)
useAsyncStartup (): boolean 0%   (0/1)0%   (0/2)0%   (0/1)

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 
5package org.chromium.chrome.testshell.sync;
6 
7import android.app.Application;
8import android.content.Context;
9 
10import org.chromium.chrome.browser.sync.ChromiumSyncAdapter;
11import org.chromium.chrome.testshell.ChromiumTestShellApplication;
12 
13public 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}

[all classes][org.chromium.chrome.testshell.sync]
EMMA 2.0.5312 (C) Vladimir Roubtsov