| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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.content.browser; | 5 package org.chromium.content.browser; |
| 6 | 6 |
| 7 import android.test.InstrumentationTestCase; | 7 import android.test.InstrumentationTestCase; |
| 8 import android.test.suitebuilder.annotation.SmallTest; | 8 import android.test.suitebuilder.annotation.SmallTest; |
| 9 | 9 |
| 10 import org.chromium.base.CommandLine; |
| 10 import org.chromium.base.ImportantFileWriterAndroid; | 11 import org.chromium.base.ImportantFileWriterAndroid; |
| 11 import org.chromium.base.test.util.Feature; | 12 import org.chromium.base.test.util.Feature; |
| 12 import org.chromium.content.app.LibraryLoader; | 13 import org.chromium.content.app.LibraryLoader; |
| 13 import org.chromium.content.common.CommandLine; | |
| 14 import org.chromium.content.common.ProcessInitException; | 14 import org.chromium.content.common.ProcessInitException; |
| 15 import org.chromium.content_shell_apk.ContentShellApplication; | 15 import org.chromium.content_shell_apk.ContentShellApplication; |
| 16 | 16 |
| 17 import java.io.DataInputStream; | 17 import java.io.DataInputStream; |
| 18 import java.io.File; | 18 import java.io.File; |
| 19 import java.io.FileInputStream; | 19 import java.io.FileInputStream; |
| 20 import java.io.IOException; | 20 import java.io.IOException; |
| 21 import java.lang.Throwable; | 21 import java.lang.Throwable; |
| 22 | 22 |
| 23 | 23 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 | 93 |
| 94 // Done, tidy up | 94 // Done, tidy up |
| 95 assertTrue(testFile.delete()); | 95 assertTrue(testFile.delete()); |
| 96 } | 96 } |
| 97 | 97 |
| 98 @Override | 98 @Override |
| 99 public void setUp() throws Exception { | 99 public void setUp() throws Exception { |
| 100 loadJni(); | 100 loadJni(); |
| 101 } | 101 } |
| 102 } | 102 } |
| OLD | NEW |