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

Side by Side Diff: chrome/android/testshell/java/src/org/chromium/chrome/testshell/ChromiumTestShellApplication.java

Issue 62333025: [Android] Move CommandLine.java to base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 7 years, 1 month 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.chrome.testshell; 5 package org.chromium.chrome.testshell;
6 6
7 import android.content.Intent; 7 import android.content.Intent;
8 8
9 import org.chromium.base.CalledByNative; 9 import org.chromium.base.CalledByNative;
10 import org.chromium.base.CommandLine;
10 import org.chromium.base.PathUtils; 11 import org.chromium.base.PathUtils;
11 import org.chromium.chrome.browser.ChromiumApplication; 12 import org.chromium.chrome.browser.ChromiumApplication;
12 import org.chromium.chrome.browser.UmaUtils; 13 import org.chromium.chrome.browser.UmaUtils;
13 import org.chromium.content.browser.ResourceExtractor; 14 import org.chromium.content.browser.ResourceExtractor;
14 import org.chromium.content.common.CommandLine;
15 15
16 import java.util.ArrayList; 16 import java.util.ArrayList;
17 17
18 /** 18 /**
19 * A basic test shell {@link android.app.Application}. Handles setting up the n ative library and 19 * A basic test shell {@link android.app.Application}. Handles setting up the n ative library and
20 * loading the right resources. 20 * loading the right resources.
21 */ 21 */
22 public class ChromiumTestShellApplication extends ChromiumApplication { 22 public class ChromiumTestShellApplication extends ChromiumApplication {
23 private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "chromiumtestshe ll"; 23 private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "chromiumtestshe ll";
24 private static final String[] CHROME_MANDATORY_PAKS = { 24 private static final String[] CHROME_MANDATORY_PAKS = {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 } 73 }
74 74
75 @Override 75 @Override
76 protected void showSyncSettings() { 76 protected void showSyncSettings() {
77 } 77 }
78 78
79 @Override 79 @Override
80 protected void showTermsOfServiceDialog() { 80 protected void showTermsOfServiceDialog() {
81 } 81 }
82 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698