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

COVERAGE SUMMARY FOR SOURCE FILE [FieldTrialHelper.java]

nameclass, %method, %block, %line, %
FieldTrialHelper.java0%   (0/1)0%   (0/2)0%   (0/6)0%   (0/2)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FieldTrialHelper0%   (0/1)0%   (0/2)0%   (0/6)0%   (0/2)
FieldTrialHelper (): void 0%   (0/1)0%   (0/3)0%   (0/1)
getFieldTrialFullName (String): String 0%   (0/1)0%   (0/3)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.browser;
6 
7/**
8 * Helper to get field trial information.
9 */
10public class FieldTrialHelper {
11 
12    private FieldTrialHelper() {}
13 
14    /**
15     * @param trialName The name of the trial to get the group for.
16     * @return The group name chosen for the named trial, or the empty string if the trial does
17     *         not exist.
18     */
19    public static String getFieldTrialFullName(String trialName) {
20        return nativeGetFieldTrialFullName(trialName);
21    }
22 
23    private static native String nativeGetFieldTrialFullName(String trialName);
24}

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