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

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
OLDNEW
(Empty)
1 // 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
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 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.
12 private final String TAG = "ContentShellActivity";
13
14 @Override
15 public void onCreate(Bundle savedInstanceState) {
16 super.onCreate(savedInstanceState);
17 Log.i(TAG, "Content shell started");
18 }
19 }
OLDNEW
« content/shell/android/content_shell.gypi ('K') | « 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