| OLD | NEW |
| (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 } | |
| OLD | NEW |