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

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

Issue 1842403003: Added Version Info page to toolbar menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@toolbar_menu
Patch Set: Addressed review comments Created 4 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 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
new file mode 100644
index 0000000000000000000000000000000000000000..7cfcdac2062a89a4874c4539059f769153051457
--- /dev/null
+++ b/blimp/client/app/android/java/src/org/chromium/blimp/settings/Preferences.java
@@ -0,0 +1,24 @@
+// 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