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

COVERAGE SUMMARY FOR SOURCE FILE [FindMatchRectsDetails.java]

nameclass, %method, %block, %line, %
FindMatchRectsDetails.java0%   (0/1)0%   (0/1)0%   (0/12)0%   (0/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FindMatchRectsDetails0%   (0/1)0%   (0/1)0%   (0/12)0%   (0/5)
FindMatchRectsDetails (int, RectF [], RectF): void 0%   (0/1)0%   (0/12)0%   (0/5)

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.chrome.browser;
6 
7import android.graphics.RectF;
8 
9/**
10 * Holds the result details of a RequestFindMatchRects reply.
11 */
12public class FindMatchRectsDetails {
13    /** Version of the the rects in this result. */
14    public final int version;
15 
16    /** Rects of the find matches in find-in-page coordinates. */
17    public final RectF[] rects;
18 
19    /** Rect of the active match in find-in-page coordinates. */
20    public final RectF activeRect;
21 
22    public FindMatchRectsDetails(int version, RectF[] rects, RectF activeRect) {
23        this.version = version;
24        this.rects = rects;
25        this.activeRect = activeRect;
26    }
27}

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