OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 package org.chromium.content_shell; | |
6 | |
7 import android.app.Activity; | |
8 import android.os.Bundle; | |
9 import android.util.Log; | |
10 | |
11 /** | |
12 * This is the main activity for content_shell on android, gets invoked when the app is invoked | |
John Grabowski
2012/03/28 21:30:54
Yes, I know java is 100, but it is trivial to acco
| |
13 * from the launcher. This activity hosts the main UI for content shell and disp lays the web | |
14 * content via its child views. | |
15 */ | |
16 public class ContentShellActivity extends Activity { | |
17 private final String TAG = "ContentShellActivity"; | |
18 | |
19 @Override | |
20 public void onCreate(Bundle savedInstanceState) { | |
21 super.onCreate(savedInstanceState); | |
22 Log.i(TAG, "Content shell started"); | |
23 } | |
24 } | |
OLD | NEW |