Bug 990116 - Part 1: Split BROWSER_INTENT_CLASS and BROWSER_INTENT_CLASS_NAME. r=mcomella

This commit is contained in:
Nick Alexander
2014-04-01 22:00:46 -07:00
parent 9ea6fca26e
commit 93d75d4d81
6 changed files with 20 additions and 7 deletions

View File

@@ -833,7 +833,7 @@ public class GeckoAppShell
shortcutIntent.setAction(GeckoApp.ACTION_BOOKMARK);
shortcutIntent.setData(Uri.parse(aURI));
shortcutIntent.setClassName(AppConstants.ANDROID_PACKAGE_NAME,
AppConstants.BROWSER_INTENT_CLASS);
AppConstants.BROWSER_INTENT_CLASS_NAME);
}
Intent intent = new Intent();
@@ -871,7 +871,7 @@ public class GeckoAppShell
shortcutIntent = new Intent();
shortcutIntent.setAction(GeckoApp.ACTION_BOOKMARK);
shortcutIntent.setClassName(AppConstants.ANDROID_PACKAGE_NAME,
AppConstants.BROWSER_INTENT_CLASS);
AppConstants.BROWSER_INTENT_CLASS_NAME);
shortcutIntent.setData(Uri.parse(aURI));
}