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 |
| 13 * app is invoked from the launcher. This activity hosts the main UI for content |
| 14 * shell and displays the web 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 |