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

Side by Side Diff: content/shell/android/java/org/chromium/content_shell/ContentShellActivity.java

Issue 9860032: Add skeleton of content shell for android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « content/shell/android/content_shell_apk.xml ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « content/shell/android/content_shell_apk.xml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698