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

Unified Diff: remoting/android/java/src/org/chromium/chromoting/HelpActivity.java

Issue 1322933002: Fix deprecation warnings in remoting/android/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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: remoting/android/java/src/org/chromium/chromoting/HelpActivity.java
diff --git a/remoting/android/java/src/org/chromium/chromoting/HelpActivity.java b/remoting/android/java/src/org/chromium/chromoting/HelpActivity.java
index 9f92472d849547fd2d039a8ed240f8bf4872f292..31effabfe802e8b48f7b0fea0a60a3ea5e071d04 100644
--- a/remoting/android/java/src/org/chromium/chromoting/HelpActivity.java
+++ b/remoting/android/java/src/org/chromium/chromoting/HelpActivity.java
@@ -17,7 +17,7 @@ import android.os.Bundle;
import android.os.IBinder;
import android.os.Parcel;
import android.os.RemoteException;
-import android.support.v7.app.ActionBarActivity;
+import android.support.v7.app.AppCompatActivity;
import android.text.TextUtils;
import android.util.Log;
import android.view.Menu;
@@ -31,7 +31,7 @@ import org.chromium.ui.UiUtils;
/**
* The Activity for showing the Help screen.
*/
-public class HelpActivity extends ActionBarActivity {
+public class HelpActivity extends AppCompatActivity {
private static final String PLAY_STORE_URL = "market://details?id=";
private static final String CREDITS_URL = "file:///android_res/raw/credits.html";

Powered by Google App Engine
This is Rietveld 408576698