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

Side by Side Diff: apk/java/org/chromium/simple/MainApplication.java

Issue 949803002: Deconstructed APK prototyping Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months 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
« no previous file with comments | « apk/java/org/chromium/simple/MainActivity.java ('k') | apk/res/drawable/app_icon.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 package org.chromium.simple;
2
3 import android.app.Application;
4 import android.content.Context;
5
6 public class MainApplication extends Application {
7 private static final String TAG = "org.chromium.simple.MainApplication";
8
9 static {
10 android.util.Log.e(TAG, "<static>");
11 }
12
13 @Override
14 public void onCreate() {
15 super.onCreate();
16 android.util.Log.e(TAG, "onCreate()");
17 }
18
19 public void initCommandLine() {
20 android.util.Log.e(TAG, "initCommandLine()");
21 }
22
23 public static void initCommandLine(Context context) {
24 ((MainApplication) context.getApplicationContext()).initCommandLine();
25 };
26
27 }
OLDNEW
« no previous file with comments | « apk/java/org/chromium/simple/MainActivity.java ('k') | apk/res/drawable/app_icon.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698