Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Issue 11743011: Add history popup when long pressing on the back key. (Closed)

Created:
7 years, 11 months ago by Ted C
Modified:
7 years, 11 months ago
CC:
chromium-reviews, joi+watch-content_chromium.org, darin-cc_chromium.org, jam
Visibility:
Public.

Description

Add history popup when long pressing on the back key. BUG=150316 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=175195

Patch Set 1 #

Total comments: 24

Patch Set 2 : Pull history URL from native. #

Patch Set 3 : Address review comments #

Total comments: 6

Patch Set 4 : Add tests for directed navigation and address comments. #

Patch Set 5 : Fix import issues. #

Patch Set 6 : Add NavigationPopup tests. Fix style issues. #

Patch Set 7 : Fix findbugs #

Patch Set 8 : Fix clang warning #

Total comments: 1

Patch Set 9 : Added ssert comments #

Patch Set 10 : Use a padding drawable for null favicons to avoid jumping UI. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+847 lines, -79 lines) Patch
M build/android/findbugs_filter/findbugs_known_bugs.txt View 1 2 3 4 5 6 1 chunk +0 lines, -1 line 0 comments Download
M chrome/android/java/res/values/strings.xml View 1 chunk +3 lines, -0 lines 0 comments Download
A chrome/android/java/src/org/chromium/chrome/browser/NavigationPopup.java View 1 2 3 4 5 6 7 8 9 1 chunk +245 lines, -0 lines 0 comments Download
A chrome/android/javatests/src/org/chromium/chrome/browser/NavigationPopupTest.java View 1 2 3 4 5 6 7 8 1 chunk +187 lines, -0 lines 0 comments Download
M chrome/browser/android/chrome_jni_registrar.cc View 2 chunks +3 lines, -1 line 0 comments Download
A chrome/browser/ui/android/navigation_popup.h View 1 2 3 4 5 6 7 1 chunk +45 lines, -0 lines 0 comments Download
A chrome/browser/ui/android/navigation_popup.cc View 1 2 3 1 chunk +98 lines, -0 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M chrome/chrome_browser_ui.gypi View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M content/browser/android/content_view_core_impl.h View 1 2 3 2 chunks +6 lines, -0 lines 0 comments Download
M content/browser/android/content_view_core_impl.cc View 1 2 3 3 chunks +58 lines, -21 lines 0 comments Download
M content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java View 1 2 3 4 5 9 chunks +22 lines, -12 lines 0 comments Download
A content/public/android/java/src/org/chromium/content/browser/NavigationClient.java View 1 2 3 4 5 1 chunk +26 lines, -0 lines 0 comments Download
M content/public/android/java/src/org/chromium/content/browser/NavigationEntry.java View 1 2 3 4 5 3 chunks +21 lines, -6 lines 0 comments Download
M content/public/android/java/src/org/chromium/content/browser/NavigationHistory.java View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/public/android/javatests/src/org/chromium/content/browser/ContentViewTestBase.java View 1 2 3 2 chunks +2 lines, -34 lines 0 comments Download
A content/public/android/javatests/src/org/chromium/content/browser/NavigationTest.java View 1 2 3 4 5 1 chunk +84 lines, -0 lines 0 comments Download
M content/shell/android/javatests/src/org/chromium/content_shell/ContentShellTestBase.java View 1 2 3 4 5 6 3 chunks +43 lines, -3 lines 0 comments Download

Messages

Total messages: 11 (0 generated)
Ted C
7 years, 11 months ago (2013-01-03 01:18:26 UTC) #1
David Trainor- moved to gerrit
lgtm. Mostly nits. https://chromiumcodereview.appspot.com/11743011/diff/1/chrome/android/java/src/org/chromium/chrome/browser/NavigationPopup.java File chrome/android/java/src/org/chromium/chrome/browser/NavigationPopup.java (right): https://chromiumcodereview.appspot.com/11743011/diff/1/chrome/android/java/src/org/chromium/chrome/browser/NavigationPopup.java#newcode38 chrome/android/java/src/org/chromium/chrome/browser/NavigationPopup.java:38: private static final String HISTORY_URL = ...
7 years, 11 months ago (2013-01-03 18:57:31 UTC) #2
Ted C
https://codereview.chromium.org/11743011/diff/1/chrome/android/java/src/org/chromium/chrome/browser/NavigationPopup.java File chrome/android/java/src/org/chromium/chrome/browser/NavigationPopup.java (right): https://codereview.chromium.org/11743011/diff/1/chrome/android/java/src/org/chromium/chrome/browser/NavigationPopup.java#newcode38 chrome/android/java/src/org/chromium/chrome/browser/NavigationPopup.java:38: private static final String HISTORY_URL = "chrome://history/"; On 2013/01/03 ...
7 years, 11 months ago (2013-01-03 19:56:41 UTC) #3
Ted C
+thakis for chrome*.gypi changes
7 years, 11 months ago (2013-01-03 22:31:55 UTC) #4
Nico
lgtm stamp because I'm clueless about Android. To prove that, a clueless remark below: (Also, ...
7 years, 11 months ago (2013-01-03 22:48:51 UTC) #5
Ted C
Test added for the navigation querying. I'll work on trying to do something for the ...
7 years, 11 months ago (2013-01-04 01:11:45 UTC) #6
Ted C
Alrighty...added tests for the popup as well.
7 years, 11 months ago (2013-01-04 03:14:50 UTC) #7
David Trainor- moved to gerrit
lgtm https://chromiumcodereview.appspot.com/11743011/diff/1/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java File content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java (right): https://chromiumcodereview.appspot.com/11743011/diff/1/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java#newcode892 content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java:892: public void goToNavigationIndex(int index) { Fair enough! On ...
7 years, 11 months ago (2013-01-04 18:11:11 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tedchoc@chromium.org/11743011/7006
7 years, 11 months ago (2013-01-04 18:20:56 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tedchoc@chromium.org/11743011/16001
7 years, 11 months ago (2013-01-04 19:10:31 UTC) #10
commit-bot: I haz the power
7 years, 11 months ago (2013-01-04 21:23:16 UTC) #11
Message was sent while issue was closed.
Change committed as 175195

Powered by Google App Engine
This is Rietveld 408576698