summaryrefslogtreecommitdiffstats
path: root/core/java/android/content/ContextWrapper.java
diff options
context:
space:
mode:
authorMitsuru Oshima <oshima@google.com>2009-06-03 11:19:12 -0700
committerMitsuru Oshima <oshima@google.com>2009-06-03 16:28:10 -0700
commit9189cabb0b6c6c28232fe6f412b7ba7a37352a6a (patch)
tree6ddc6a8eb0158cba32cc6139b04c6b6eb9f0ba5f /core/java/android/content/ContextWrapper.java
parenteaeb663bcd7a82b654954b42663232cbd7bef7e7 (diff)
downloadframeworks_base-9189cabb0b6c6c28232fe6f412b7ba7a37352a6a.zip
frameworks_base-9189cabb0b6c6c28232fe6f412b7ba7a37352a6a.tar.gz
frameworks_base-9189cabb0b6c6c28232fe6f412b7ba7a37352a6a.tar.bz2
* Moved supports-density tag under manifest
* Refactored Compatibility code * Added CompatibilityInfo class * Removed getApplicationScale from Context * Added Resources#getCompatibilityInfo so that RootView can get the compatibility info w/o going through Context * Expandable support * Added expandable tag under manifest * Old application w/o expandable is given the default screen size ([320, 480] x density). * The non-expandable window is centered.
Diffstat (limited to 'core/java/android/content/ContextWrapper.java')
-rw-r--r--core/java/android/content/ContextWrapper.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/core/java/android/content/ContextWrapper.java b/core/java/android/content/ContextWrapper.java
index 25b2cae..36e1c34 100644
--- a/core/java/android/content/ContextWrapper.java
+++ b/core/java/android/content/ContextWrapper.java
@@ -419,12 +419,4 @@ public class ContextWrapper extends Context {
throws PackageManager.NameNotFoundException {
return mBase.createPackageContext(packageName, flags);
}
-
- /**
- * @hide
- */
- @Override
- public float getApplicationScale() {
- return mBase.getApplicationScale();
- }
}