summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorSteve Howard <showard@google.com>2010-07-30 11:09:48 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-07-30 11:09:48 -0700
commit7c600369c9695de73ca37db552eb81b8b89d5e76 (patch)
treed083a771e7a1d7c48fb516c948b530b4fd0a28f7 /core
parent92e847ed8e455dca3b2d33d92999e3960404d9af (diff)
parent7083c42fff819b2c4949984a461bd54e9fa822a3 (diff)
downloadframeworks_base-7c600369c9695de73ca37db552eb81b8b89d5e76.zip
frameworks_base-7c600369c9695de73ca37db552eb81b8b89d5e76.tar.gz
frameworks_base-7c600369c9695de73ca37db552eb81b8b89d5e76.tar.bz2
Merge "Update Context.getSystemService() docs for download manager." into gingerbread
Diffstat (limited to 'core')
-rw-r--r--core/java/android/content/Context.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/content/Context.java b/core/java/android/content/Context.java
index 7951a30..aecdcb3 100644
--- a/core/java/android/content/Context.java
+++ b/core/java/android/content/Context.java
@@ -1206,6 +1206,8 @@ public abstract class Context {
* for management of input methods.
* <dt> {@link #UI_MODE_SERVICE} ("uimode")
* <dd> An {@link android.app.UiModeManager} for controlling UI modes.
+ * <dt> {@link #DOWNLOAD_SERVICE} ("download")
+ * <dd> A {@link android.net.DownloadManager} for requesting HTTP downloads
* </dl>
*
* <p>Note: System services obtained via this API may be closely associated with
@@ -1253,6 +1255,8 @@ public abstract class Context {
* @see android.view.inputmethod.InputMethodManager
* @see #UI_MODE_SERVICE
* @see android.app.UiModeManager
+ * @see #DOWNLOAD_SERVICE
+ * @see android.net.DownloadManager
*/
public abstract Object getSystemService(String name);