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.content_shell;
6
7import android.content.Context;
8
9import org.chromium.base.CalledByNative;
10import org.chromium.base.JNINamespace;
11
12/**
13 * Utility methods used by content_shell for running Blink's layout tests on Android.
14 */
15@JNINamespace("content")
16class ShellLayoutTestUtils {
17    /**
18     * @return The directory in which the test files, for example FIFOs, can be stored.
19     */
20    @SuppressWarnings("unused")
21    @CalledByNative
22    private static String getApplicationFilesDirectory(Context appContext) {
23        return appContext.getFilesDir().getAbsolutePath();
24    }
25}
26