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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: blimp/client/app/android/java/src/org/chromium/blimp/settings/Preferences.java
diff --git a/blimp/client/app/android/java/src/org/chromium/blimp/settings/Preferences.java b/blimp/client/app/android/java/src/org/chromium/blimp/settings/Preferences.java
deleted file mode 100644
index 7cfcdac2062a89a4874c4539059f769153051457..0000000000000000000000000000000000000000
--- a/blimp/client/app/android/java/src/org/chromium/blimp/settings/Preferences.java
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package org.chromium.blimp.settings;
-
-import android.app.Activity;
-import android.os.Bundle;
-
-/**
- * An activity to display the settings and version info.
- */
-public class Preferences extends Activity {
- private static final String TAG = "Preferences";
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- getFragmentManager()
- .beginTransaction()
- .replace(android.R.id.content, new AboutBlimpPreferences())
- .commit();
- }
-}

Powered by Google App Engine
This is Rietveld 408576698