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

Side by Side Diff: blimp/client/app/android/java/src/org/chromium/blimp/settings/Preferences.java

Issue 2493333002: Move Java Blimp shell code to app subpackage (Closed)
Patch Set: Merge branch 'refs/heads/master' into blimp-shell-integration Created 4 years, 1 month 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
OLDNEW
(Empty)
1 // Copyright 2016 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.blimp.settings;
6
7 import android.app.Activity;
8 import android.os.Bundle;
9
10 /**
11 * An activity to display the settings and version info.
12 */
13 public class Preferences extends Activity {
14 private static final String TAG = "Preferences";
15
16 @Override
17 public void onCreate(Bundle savedInstanceState) {
18 super.onCreate(savedInstanceState);
19 getFragmentManager()
20 .beginTransaction()
21 .replace(android.R.id.content, new AboutBlimpPreferences())
22 .commit();
23 }
24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698