diff options
author | Dianne Hackborn <hackbod@google.com> | 2011-09-01 15:54:43 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-09-01 15:54:43 -0700 |
commit | 69666e078152362b19d02d9ee79bbd5fc69e09c3 (patch) | |
tree | 3bed6429e1ba7da61b8ecd164969b8015cf7ba1f /services | |
parent | 912a8b7062647700436c4ea001f58d61fd46c72f (diff) | |
parent | ba24e4d8bbeb60e96d74f05e21691dad61ce497e (diff) | |
download | frameworks_base-69666e078152362b19d02d9ee79bbd5fc69e09c3.zip frameworks_base-69666e078152362b19d02d9ee79bbd5fc69e09c3.tar.gz frameworks_base-69666e078152362b19d02d9ee79bbd5fc69e09c3.tar.bz2 |
Merge "Fix issue #5229575: Youtube link shared through messaging is not..."
Diffstat (limited to 'services')
-rw-r--r-- | services/java/com/android/server/pm/PackageManagerService.java | 7 | ||||
-rw-r--r-- | services/java/com/android/server/wm/WindowManagerService.java | 6 |
2 files changed, 5 insertions, 8 deletions
diff --git a/services/java/com/android/server/pm/PackageManagerService.java b/services/java/com/android/server/pm/PackageManagerService.java index b8797d1..bfb244b 100644 --- a/services/java/com/android/server/pm/PackageManagerService.java +++ b/services/java/com/android/server/pm/PackageManagerService.java @@ -78,8 +78,6 @@ import android.os.Bundle; import android.os.Environment; import android.os.FileObserver; import android.os.FileUtils; -import android.os.FileUtils.FileStatus; -import android.os.Debug; import android.os.Handler; import android.os.HandlerThread; import android.os.IBinder; @@ -706,6 +704,7 @@ public class PackageManagerService extends IPackageManager.Stub { Runtime.getRuntime().gc(); } if (msg.obj != null) { + @SuppressWarnings("unchecked") Set<SdInstallArgs> args = (Set<SdInstallArgs>) msg.obj; if (DEBUG_SD_INSTALL) Log.i(TAG, "Unloading all containers"); // Unload containers @@ -3039,10 +3038,6 @@ public class PackageManagerService extends IPackageManager.Stub { return null; } mScanningPath = scanFile; - if (pkg == null) { - mLastScanError = PackageManager.INSTALL_PARSE_FAILED_BAD_PACKAGE_NAME; - return null; - } if ((parseFlags&PackageParser.PARSE_IS_SYSTEM) != 0) { pkg.applicationInfo.flags |= ApplicationInfo.FLAG_SYSTEM; diff --git a/services/java/com/android/server/wm/WindowManagerService.java b/services/java/com/android/server/wm/WindowManagerService.java index f5a5e2e..81f7d13 100644 --- a/services/java/com/android/server/wm/WindowManagerService.java +++ b/services/java/com/android/server/wm/WindowManagerService.java @@ -4703,6 +4703,8 @@ public class WindowManagerService extends IWindowManager.Stub mH.sendMessageDelayed(msg, 30*1000); } + mPolicy.systemBooted(); + performEnableScreen(); } @@ -7921,13 +7923,13 @@ public class WindowManagerService extends IWindowManager.Stub if (mWindowDetachedWallpaper != windowDetachedWallpaper) { if (DEBUG_WALLPAPER) Slog.v(TAG, "Detached wallpaper changed from " + mWindowDetachedWallpaper - + windowDetachedWallpaper); + + " to " + windowDetachedWallpaper); mWindowDetachedWallpaper = windowDetachedWallpaper; wallpaperMayChange = true; } if (windowAnimationBackgroundColor != 0) { - // If this window that wants black is the current wallpaper + // If the window that wants black is the current wallpaper // target, then the black goes *below* the wallpaper so we // don't cause the wallpaper to suddenly disappear. WindowState target = windowAnimationBackground; |