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

COVERAGE SUMMARY FOR SOURCE FILE [TracingIntentHandler.java]

nameclass, %method, %block, %line, %
TracingIntentHandler.java0%   (0/1)0%   (0/3)0%   (0/8)0%   (0/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class TracingIntentHandler0%   (0/1)0%   (0/3)0%   (0/8)0%   (0/5)
TracingIntentHandler (): void 0%   (0/1)0%   (0/3)0%   (0/1)
beginTracing (String): void 0%   (0/1)0%   (0/3)0%   (0/2)
endTracing (): void 0%   (0/1)0%   (0/2)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.content.browser;
6 
7import org.chromium.base.JNINamespace;
8 
9/**
10 * Handler for tracing related intent.
11 */
12@JNINamespace("content")
13public class TracingIntentHandler {
14 
15    /**
16     * Begin recording trace events.
17     *
18     * @param path Specifies where the trace data will be saved when tracing is stopped.
19     */
20    public static void beginTracing(String path) {
21        nativeBeginTracing(path);
22    }
23 
24    /**
25     * Stop recording trace events, and dump the data to the file
26     */
27    public static void endTracing() {
28        nativeEndTracing();
29    }
30 
31    private static native void nativeBeginTracing(String path);
32    private static native void nativeEndTracing();
33}

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