Index: content/shell/android/java/org/chromium/content_shell/ContentShellActivity.java |
diff --git a/content/shell/android/java/org/chromium/content_shell/ContentShellActivity.java b/content/shell/android/java/org/chromium/content_shell/ContentShellActivity.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9af3078f726324aab64673aa034196aa99764405 |
--- /dev/null |
+++ b/content/shell/android/java/org/chromium/content_shell/ContentShellActivity.java |
@@ -0,0 +1,19 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
Ted C
2012/03/27 17:16:23
I think to make this easier to match other android
Satish
2012/03/27 20:15:28
Agree on the general dir structure. 'src' has a pr
Ted C
2012/03/27 20:33:02
I will argue that is not a good precedence. All A
|
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+package org.chromium.content_shell; |
+ |
+import android.app.Activity; |
+import android.os.Bundle; |
+import android.util.Log; |
+ |
+public class ContentShellActivity extends Activity { |
Ted C
2012/03/27 17:16:23
Class level javadoc...let's start this project out
Satish
2012/03/27 20:15:28
Done.
|
+ private final String TAG = "ContentShellActivity"; |
+ |
+ @Override |
+ public void onCreate(Bundle savedInstanceState) { |
+ super.onCreate(savedInstanceState); |
+ Log.i(TAG, "Content shell started"); |
+ } |
+} |