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

Side by Side Diff: blimp/client/app/android/java/src/org/chromium/blimp/app/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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.blimp.settings; 5 package org.chromium.blimp.app.settings;
6 6
7 import android.app.Activity; 7 import android.app.Activity;
8 import android.os.Bundle; 8 import android.os.Bundle;
9 9
10 /** 10 /**
11 * An activity to display the settings and version info. 11 * An activity to display the settings and version info.
12 */ 12 */
13 public class Preferences extends Activity { 13 public class Preferences extends Activity {
14 private static final String TAG = "Preferences"; 14 private static final String TAG = "Preferences";
15 15
16 @Override 16 @Override
17 public void onCreate(Bundle savedInstanceState) { 17 public void onCreate(Bundle savedInstanceState) {
18 super.onCreate(savedInstanceState); 18 super.onCreate(savedInstanceState);
19 getFragmentManager() 19 getFragmentManager()
20 .beginTransaction() 20 .beginTransaction()
21 .replace(android.R.id.content, new AboutBlimpPreferences()) 21 .replace(android.R.id.content, new AboutBlimpPreferences())
22 .commit(); 22 .commit();
23 } 23 }
24 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698