<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages_apps_Browser/src/com/android/browser/WallpaperHandler.java, branch replicant-6.0</title>
<subtitle>packages/apps/browser
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Browser/'/>
<entry>
<title>NPE in WallpaperHandler</title>
<updated>2012-08-14T08:49:12+00:00</updated>
<author>
<name>Nils Holmström</name>
<email>nils.holmstrom@sonymobile.com</email>
</author>
<published>2012-04-26T16:46:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Browser/commit/?id=4db7e933f4c26e28f82dc912863f7d02d8fb94ab'/>
<id>4db7e933f4c26e28f82dc912863f7d02d8fb94ab</id>
<content type='text'>
In WallpaperHandler, BitmapFactory.decodeStream() is used to create
a Bitmap that is then set by WallpaperManager as a wallpaper.
This method has null as return value when something fails as
decoding, resulting in a nullpointer exception in WallpaperManager.
Adding nullcheck on the Bitmap before setting it as wallpaper to
avoid the NPE.

Change-Id: Ib1a0f9331898162b21094c3ebe80bc21d66f8bd7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In WallpaperHandler, BitmapFactory.decodeStream() is used to create
a Bitmap that is then set by WallpaperManager as a wallpaper.
This method has null as return value when something fails as
decoding, resulting in a nullpointer exception in WallpaperManager.
Adding nullcheck on the Bitmap before setting it as wallpaper to
avoid the NPE.

Change-Id: Ib1a0f9331898162b21094c3ebe80bc21d66f8bd7
</pre>
</div>
</content>
</entry>
<entry>
<title>Data URL fixes - bookmarks, save, and wallpaper</title>
<updated>2011-10-10T20:11:56+00:00</updated>
<author>
<name>George Mount</name>
<email>mount@google.com</email>
</author>
<published>2011-10-07T22:57:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Browser/commit/?id=387d45d2284c7fd7f12cbadc96161f946ae29cad'/>
<id>387d45d2284c7fd7f12cbadc96161f946ae29cad</id>
<content type='text'>
 Bug 5383517
 Images kept in data URLs can now be selected and this fixes the
 Save and Set Wallpaper options. It also removes the bookmarking
 capability.

Change-Id: I461bdcb4c950f6fcd8db8b38f4c599212106b027
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 Bug 5383517
 Images kept in data URLs can now be selected and this fixes the
 Save and Set Wallpaper options. It also removes the bookmarking
 capability.

Change-Id: I461bdcb4c950f6fcd8db8b38f4c599212106b027
</pre>
</div>
</content>
</entry>
<entry>
<title>Clear bitmap from canvas after done drawing to it.</title>
<updated>2011-08-02T23:59:35+00:00</updated>
<author>
<name>Dianne Hackborn</name>
<email>hackbod@google.com</email>
</author>
<published>2011-08-02T23:59:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Browser/commit/?id=43cfe8a4521b5c153055fbfa181940bc56bb3b06'/>
<id>43cfe8a4521b5c153055fbfa181940bc56bb3b06</id>
<content type='text'>
Change-Id: I0ebc8510021a2dd0b147ced7890d939ec47809f6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I0ebc8510021a2dd0b147ced7890d939ec47809f6
</pre>
</div>
</content>
</entry>
<entry>
<title>Guard against menu onclick being called twice</title>
<updated>2011-06-10T22:14:52+00:00</updated>
<author>
<name>John Reck</name>
<email>jreck@google.com</email>
</author>
<published>2011-06-10T22:14:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Browser/commit/?id=8549365bc3e7fe5af07f687286404dbcc3553815'/>
<id>8549365bc3e7fe5af07f687286404dbcc3553815</id>
<content type='text'>
 Bug: 4375496

Change-Id: Id1523ce179bcd4a5f66065109e3dd97d0a8f9ff4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 Bug: 4375496

Change-Id: Id1523ce179bcd4a5f66065109e3dd97d0a8f9ff4
</pre>
</div>
</content>
</entry>
<entry>
<title>Check the size of the wallpapers we download.</title>
<updated>2011-02-22T21:08:27+00:00</updated>
<author>
<name>Ben Murdoch</name>
<email>benm@google.com</email>
</author>
<published>2011-02-21T18:40:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Browser/commit/?id=b860a62a7fc645fa3b4f5b2733766f60570d65f9'/>
<id>b860a62a7fc645fa3b4f5b2733766f60570d65f9</id>
<content type='text'>
 Bug: 3250639
 If we download a very large wallpaper, scale it back down to a
 size more fitting for the system. This avoids us crashing by
 trying to load a huge bitmap, or the WallpaperManager bailing
 out if it gets passed a big image.

Change-Id: I9182cdf0aa28abbb4afa43bea54edc6aff3755c7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 Bug: 3250639
 If we download a very large wallpaper, scale it back down to a
 size more fitting for the system. This avoids us crashing by
 trying to load a huge bitmap, or the WallpaperManager bailing
 out if it gets passed a big image.

Change-Id: I9182cdf0aa28abbb4afa43bea54edc6aff3755c7
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Remove set wallpaper context item"</title>
<updated>2011-02-22T18:35:29+00:00</updated>
<author>
<name>John Reck</name>
<email>jreck@google.com</email>
</author>
<published>2011-02-22T18:35:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Browser/commit/?id=3527dd1ff849ec4798eab6289593aa404dcae40b'/>
<id>3527dd1ff849ec4798eab6289593aa404dcae40b</id>
<content type='text'>
This reverts commit fa286747cae4c65080a88635287dde63ececbeff.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit fa286747cae4c65080a88635287dde63ececbeff.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove set wallpaper context item</title>
<updated>2011-02-18T22:58:10+00:00</updated>
<author>
<name>John Reck</name>
<email>jreck@google.com</email>
</author>
<published>2011-02-18T22:58:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Browser/commit/?id=fa286747cae4c65080a88635287dde63ececbeff'/>
<id>fa286747cae4c65080a88635287dde63ececbeff</id>
<content type='text'>
 Bug: 3250639 &amp; 3471061

Change-Id: I221c0fce6fee57ce19f50821c26d504a3fd7e6ef
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 Bug: 3250639 &amp; 3471061

Change-Id: I221c0fce6fee57ce19f50821c26d504a3fd7e6ef
</pre>
</div>
</content>
</entry>
<entry>
<title>Controller Refactor</title>
<updated>2010-11-17T21:27:05+00:00</updated>
<author>
<name>Michael Kolb</name>
<email>kolby@google.com</email>
</author>
<published>2010-10-26T23:08:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/replicant/packages_apps_Browser/commit/?id=8233facddcc51865d612a919d450db6954aa48e3'/>
<id>8233facddcc51865d612a919d450db6954aa48e3</id>
<content type='text'>
    Bug: 3170671
    First step towards a model/view/control design in Browser
    introduced Controller object
    started separating UI code
    represent state of the app in one place only

Change-Id: Ica387d6bde2dcf1a4993c3db0cce498cf34ff60f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
    Bug: 3170671
    First step towards a model/view/control design in Browser
    introduced Controller object
    started separating UI code
    represent state of the app in one place only

Change-Id: Ica387d6bde2dcf1a4993c3db0cce498cf34ff60f
</pre>
</div>
</content>
</entry>
</feed>
