2010-09-28 05:08:55 +04:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-06-03 01:55:28 +04:00
|
|
|
|
|
|
|
#filter substitution
|
2010-12-21 23:02:14 +03:00
|
|
|
package @ANDROID_PACKAGE_NAME@;
|
2010-06-03 01:55:28 +04:00
|
|
|
|
|
|
|
import org.mozilla.gecko.GeckoApp;
|
|
|
|
|
|
|
|
public class App extends GeckoApp {
|
2010-12-21 23:02:14 +03:00
|
|
|
public String getPackageName() {
|
|
|
|
return "@ANDROID_PACKAGE_NAME@";
|
2010-06-03 01:55:28 +04:00
|
|
|
}
|
2010-06-26 00:12:03 +04:00
|
|
|
public String getContentProcessName() {
|
|
|
|
return "@MOZ_CHILD_PROCESS_NAME@";
|
|
|
|
}
|
2010-06-03 01:55:28 +04:00
|
|
|
};
|
|
|
|
|