Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: content/shell/android/java/src/org/chromium/content_shell/ShellLayoutTestUtils.java

Issue 17265005: content_shell: Create the FIFOs needed for running Android layout tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
5 package org.chromium.content_shell;
6
7 import android.content.Context;
8
9 import org.chromium.base.CalledByNative;
10 import org.chromium.base.JNINamespace;
11
12 /**
13 * Utility methods used when using content_shell for running Blink's layout
bulach 2013/06/19 17:57:42 s/used when using/used by/
Peter Beverloo 2013/06/19 19:48:32 Done.
14 * tests on Android.
15 */
16 @JNINamespace("content")
17 public class ShellLayoutTestUtils {
bulach 2013/06/19 17:57:42 nit: s/public//
Peter Beverloo 2013/06/19 19:48:32 Done.
18 /**
19 * @return The directory in which the test files, for example FIFOs, can be stored.
20 */
21 @SuppressWarnings("unused")
22 @CalledByNative
23 public static String getApplicationFilesDirectory(Context appContext) {
bulach 2013/06/19 17:57:42 nit: s/public/private/
Peter Beverloo 2013/06/19 19:48:32 Done. Weird, though, since we access it from outsi
24 return appContext.getFilesDir().getAbsolutePath();
25 }
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698