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

COVERAGE SUMMARY FOR SOURCE FILE [PathService.java]

nameclass, %method, %block, %line, %
PathService.java0%   (0/1)0%   (0/2)0%   (0/7)0%   (0/3)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class PathService0%   (0/1)0%   (0/2)0%   (0/7)0%   (0/3)
PathService (): void 0%   (0/1)0%   (0/3)0%   (0/1)
override (int, String): void 0%   (0/1)0%   (0/4)0%   (0/2)

1// Copyright (c) 2012 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.base;
6 
7/**
8 * This class provides java side access to the native PathService.
9 */
10@JNINamespace("base::android")
11public abstract class PathService {
12 
13    // Must match the value of DIR_MODULE in base/base_paths.h!
14    public static final int DIR_MODULE = 3;
15 
16    // Prevent instantiation.
17    private PathService() {}
18 
19    public static void override(int what, String path) {
20        nativeOverride(what, path);
21    }
22 
23    private static native void nativeOverride(int what, String path);
24}

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