1. 13 Oct, 2009 1 commit
  2. 08 Oct, 2009 1 commit
  3. 29 Sep, 2009 1 commit
  4. 27 Aug, 2009 1 commit
    • Grace Kloba's avatar
      Fix the activity leak in the Browser. · b8a9cb0e
      Grace Kloba authored
      The IconListenerSet inside CombinedBookmarkHistoryActivity is static. So when
      the activity is destroyed, it needs to remove its listener to avoid leak.
      b8a9cb0e
  5. 17 Aug, 2009 1 commit
  6. 13 Aug, 2009 1 commit
  7. 12 Aug, 2009 1 commit
  8. 03 Aug, 2009 1 commit
  9. 31 Jul, 2009 1 commit
  10. 28 Jul, 2009 1 commit
  11. 27 Jul, 2009 1 commit
  12. 22 Jul, 2009 1 commit
  13. 21 Jul, 2009 2 commits
    • Patrick Scott's avatar
      Do not merge · a0b0e2a2
      Patrick Scott authored
      When opening a new tab from the context menu, treat the new tab as a child of
      the current tab. This change was cherry-picked from master.
      a0b0e2a2
    • Leon Scroggins's avatar
      DO NOT MERGE: Remove deprecated call: Cursor.commitUpdates(). · 55581a65
      Leon Scroggins authored
      This change was previously made in master, but I believe it is
      responsible for a crash.  We should not be using this deprecated
      method, so I am now instead using ContentResolver.update().
      55581a65
  14. 20 Jul, 2009 1 commit
  15. 15 Jul, 2009 1 commit
    • Patrick Scott's avatar
      Do not merge. · e8dc977d
      Patrick Scott authored
      Check for a null tab in onDestroy. This fix is in master but the crash appears
      in donut as well.
      e8dc977d
  16. 13 Jul, 2009 4 commits
  17. 10 Jul, 2009 2 commits
  18. 08 Jul, 2009 1 commit
  19. 01 Jul, 2009 3 commits
  20. 30 Jun, 2009 2 commits
  21. 25 Jun, 2009 2 commits
  22. 24 Jun, 2009 2 commits
    • Android (Google) Code Review's avatar
      Merge change 5160 into donut · d1c2a433
      Android (Google) Code Review authored
      * changes:
        Return the url of a browser history item in the intent query column of the suggestion. This is so that global search can rewrite a query in the search dialog (i.e., fill in the search box with the url of the suggestion when the user rolls over to select the suggestion). Browser uses android:searchMode="rewriteQueryFromData" to accomplish this but global search does the default thing of using the intent query column, if present, as a rewrite for the current query.
      d1c2a433
    • Mike LeBeau's avatar
      Return the url of a browser history item in the intent query column of the · 2af73052
      Mike LeBeau authored
      suggestion. This is so that global search can rewrite a query in the search
      dialog (i.e., fill in the search box with the url of the suggestion when the
      user rolls over to select the suggestion). Browser uses
      android:searchMode="rewriteQueryFromData" to accomplish this but global search
      does the default thing of using the intent query column, if present, as a rewrite
      for the current query.
      2af73052
  23. 23 Jun, 2009 1 commit
    • Satish Sampath's avatar
      Pass through SearchManager.APP_DATA bundle in web searches. · 15e9f2dc
      Satish Sampath authored
      This got missed when we made the change to invoke the system default web search handler instead of the browser directing all searches to Google. This makes sure that the receiving web search providers can pass on the source parameter appropriately as part of the results page that they launch.
      15e9f2dc
  24. 22 Jun, 2009 5 commits
  25. 19 Jun, 2009 1 commit
  26. 18 Jun, 2009 1 commit
    • Dianne Hackborn's avatar
      Update browser to use new Intent URI expansion. · 99189435
      Dianne Hackborn authored
      This changes the browser's URI->intent processing to use the new generic
      "intent:" scheme supported by Intent.  Doing so allows the user to
      provide links to arbitrary intents in a web page.  The browser restricts
      which intents can actually be execute to those supported by the
      BROWSABLE category by adding this to the resulting Intent and making
      sure there is no explicit component in the Intent.
      
      With the addition of package-specific Intents, this allows people to
      have a link that is guaranteed to launch an activity in their own
      package, not allowing others to intercept it.
      99189435