Merge: Clean up to prepare for NitActivity
authorJean Privat <jean@pryen.org>
Sun, 1 Feb 2015 08:46:23 +0000 (15:46 +0700)
committerJean Privat <jean@pryen.org>
Sun, 1 Feb 2015 08:46:23 +0000 (15:46 +0700)
commit4c2b63c9f838a7d7fb12961cde56c7cb7a569792
tree3959372f122c77bd78602d8b99bca4e24a42913a
parentce89a76be6a7c4a144c83e2fbd7c7359ceb6f269
parentf20e590efd34a9a68f30a7b562cc4f9d396c24a2
Merge: Clean up to prepare for NitActivity

This PR cleans the way to replace our current use of `NativeActivity` by our own `NitActivity` a direct subclass to `Activity`. The result of this PR that we are less dependent on `NativeActivity` and the `native_app_glue` module.

Notable modifications:

* Use Java `Activity` instead of `NativeActivity` wherever possible.
* Rename, to follow convention, Nit `NativeActivity` to `NativeNativeActivity` and `Activity` to `NativeActivity`. Thus all previous Java code using the Java `NativeActivity`, will now use Java `Activity`. The name `NativeNativeActivity` is weird, but temporary as the class will be removed once we have our `NitActivity`.

Pull-Request: #1128
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Alexandre Terrasa <alexandre@moz-code.org>