diff options
Diffstat (limited to 'src/com/android/browser/BrowserActivity.java')
-rw-r--r-- | src/com/android/browser/BrowserActivity.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/com/android/browser/BrowserActivity.java b/src/com/android/browser/BrowserActivity.java index 3c025d2..c26d850 100644 --- a/src/com/android/browser/BrowserActivity.java +++ b/src/com/android/browser/BrowserActivity.java @@ -62,11 +62,6 @@ public class BrowserActivity extends Activity { BrowserSettings settings = BrowserSettings.getInstance(); - // We load the first set of BrowserSettings from the db asynchronously - // but if it has not completed at this point, we have no choice but - // to block waiting for them to finish loading. :( - settings.waitForLoadFromDbToComplete(); - // render the browser in OpenGL if (settings.isHardwareAccelerated()) { // Set the flag in the activity's window @@ -77,12 +72,6 @@ public class BrowserActivity extends Activity { this.getWindow().setFlags(0, WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED); } - // enable this to test the browser in 32bit - if (false) { - getWindow().setFormat(PixelFormat.RGBX_8888); - BitmapFactory.setDefaultConfig(Bitmap.Config.ARGB_8888); - } - // If this was a web search request, pass it on to the default web // search provider and finish this activity. if (IntentHandler.handleWebSearchIntent(this, null, getIntent())) { |