| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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.mojo_shell_apk; | 5 package org.chromium.mojo_shell_apk; |
| 6 | 6 |
| 7 import android.util.Log; | 7 import android.util.Log; |
| 8 | 8 |
| 9 import org.chromium.base.BaseChromiumApplication; | 9 import org.chromium.base.BaseChromiumApplication; |
| 10 import org.chromium.base.PathUtils; | 10 import org.chromium.base.PathUtils; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 private void initializeNative() { | 48 private void initializeNative() { |
| 49 try { | 49 try { |
| 50 LibraryLoader.ensureInitialized(); | 50 LibraryLoader.ensureInitialized(); |
| 51 } catch (ProcessInitException e) { | 51 } catch (ProcessInitException e) { |
| 52 Log.e(TAG, "libmojo_shell initialization failed.", e); | 52 Log.e(TAG, "libmojo_shell initialization failed.", e); |
| 53 System.exit(-1); | 53 System.exit(-1); |
| 54 return; | 54 return; |
| 55 } | 55 } |
| 56 } | 56 } |
| 57 } | 57 } |
| OLD | NEW |