diff options
author | Dianne Hackborn <hackbod@google.com> | 2009-07-28 00:13:47 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2009-07-28 00:13:47 -0700 |
commit | 7f2054392e9957d3ba8579ef08c29cfb27df564e (patch) | |
tree | 5e07f36bea3038fa5c13e4b81fa6421be79652ac /test-runner/android | |
parent | ecbbecf6c535e7f3e1d072d43766a95aa18ee464 (diff) | |
download | frameworks_base-7f2054392e9957d3ba8579ef08c29cfb27df564e.zip frameworks_base-7f2054392e9957d3ba8579ef08c29cfb27df564e.tar.gz frameworks_base-7f2054392e9957d3ba8579ef08c29cfb27df564e.tar.bz2 |
Updates from API review.
* AccessibilityService -- document onBind() to not be implemented.
* GestureLibrary.getLearner() -- needs to be hidden.
* IntentSender -- remove protected constructors, document that it is retrieved from a PendingIntent.
* Hide permissions: SHUTDOWN, STOP_APP_SWITCHES.
* Context -- hide BACKUP_SERVICE.
* ContextWrapper -- hide getSharedPrefs bla h blah
* Intent.parseUri() -- fix docs.
* ApplicationInfo.FLAG_TEST_ONLY?!?
* Hide MockContext.getSharedPrefs blah blah
Diffstat (limited to 'test-runner/android')
-rw-r--r-- | test-runner/android/test/mock/MockContext.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test-runner/android/test/mock/MockContext.java b/test-runner/android/test/mock/MockContext.java index b83a44d..9fb1e61 100644 --- a/test-runner/android/test/mock/MockContext.java +++ b/test-runner/android/test/mock/MockContext.java @@ -110,6 +110,7 @@ public class MockContext extends Context { throw new UnsupportedOperationException(); } + /** @hide */ @Override public File getSharedPrefsFile(String name) { throw new UnsupportedOperationException(); |