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

Issue 16632009: Set AllowOverlappingViews for history overlay (Closed)

Created:
7 years, 6 months ago by sail
Modified:
7 years, 6 months ago
CC:
chromium-reviews, sail+watch_chromium.org
Visibility:
Public.

Description

Set AllowOverlappingViews for history overlay In r204580 I changed AllowOverlappingViews to only be set when necessary. This caused the history overlay to no longer be visible. Fix was to also check the hisotry overlay state when setting AllowOverlappingViews. BUG=236460, 248169 TEST=Navigate to http://www.webkit.org/blog-files/3d-transforms/poster-circle.html Then navigate to google.com. Swipe back to the first page. Swipe forward to the second page. Without my patch the back and forward arrows are not visible. With my patch the arrows are visible. NOTRY=true Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=205871

Patch Set 1 #

Total comments: 6

Patch Set 2 : comments #

Patch Set 3 : #

Total comments: 2

Patch Set 4 : #

Patch Set 5 : #

Total comments: 2

Patch Set 6 : fix comment #

Unified diffs Side-by-side diffs Delta from patch set Stats (+70 lines, -3 lines) Patch
M chrome/browser/ui/cocoa/browser_window_controller.h View 1 2 3 4 2 chunks +14 lines, -0 lines 0 comments Download
M chrome/browser/ui/cocoa/browser_window_controller.mm View 1 chunk +10 lines, -0 lines 0 comments Download
M chrome/browser/ui/cocoa/browser_window_controller_browsertest.mm View 1 2 3 3 chunks +19 lines, -0 lines 0 comments Download
M chrome/browser/ui/cocoa/browser_window_controller_private.mm View 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/ui/cocoa/history_overlay_controller.mm View 1 2 3 chunks +5 lines, -0 lines 0 comments Download
M content/browser/web_contents/web_contents_view_guest.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/web_contents/web_contents_view_guest.cc View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M content/browser/web_contents/web_contents_view_mac.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/web_contents/web_contents_view_mac.mm View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M content/public/browser/web_contents_view.h View 1 2 3 4 5 1 chunk +4 lines, -3 lines 0 comments Download
M content/test/test_web_contents_view.h View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M content/test/test_web_contents_view.cc View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download

Messages

Total messages: 17 (0 generated)
sail
7 years, 6 months ago (2013-06-10 19:54:41 UTC) #1
Robert Sesek
https://codereview.chromium.org/16632009/diff/1/chrome/browser/ui/cocoa/browser_window_controller.h File chrome/browser/ui/cocoa/browser_window_controller.h (right): https://codereview.chromium.org/16632009/diff/1/chrome/browser/ui/cocoa/browser_window_controller.h#newcode351 chrome/browser/ui/cocoa/browser_window_controller.h:351: - (void)onHistoryOverlayShown; This needs comments. As do the two ...
7 years, 6 months ago (2013-06-10 20:30:35 UTC) #2
sail
https://codereview.chromium.org/16632009/diff/1/chrome/browser/ui/cocoa/browser_window_controller.h File chrome/browser/ui/cocoa/browser_window_controller.h (right): https://codereview.chromium.org/16632009/diff/1/chrome/browser/ui/cocoa/browser_window_controller.h#newcode351 chrome/browser/ui/cocoa/browser_window_controller.h:351: - (void)onHistoryOverlayShown; On 2013/06/10 20:30:35, rsesek wrote: > This ...
7 years, 6 months ago (2013-06-10 20:56:01 UTC) #3
Robert Sesek
https://codereview.chromium.org/16632009/diff/1/chrome/browser/ui/cocoa/browser_window_controller.mm File chrome/browser/ui/cocoa/browser_window_controller.mm (right): https://codereview.chromium.org/16632009/diff/1/chrome/browser/ui/cocoa/browser_window_controller.mm#newcode1996 chrome/browser/ui/cocoa/browser_window_controller.mm:1996: ++historyOverlayCount_; On 2013/06/10 20:56:01, sail wrote: > On 2013/06/10 ...
7 years, 6 months ago (2013-06-10 20:59:28 UTC) #4
sail
In this patch I've moved my changes from ChromeRenderWidgetHostViewMacDelegate to HistoryOverlayController. With the original patch ...
7 years, 6 months ago (2013-06-10 22:21:07 UTC) #5
Robert Sesek
Cool. Is it possible at all to test this? :/ https://codereview.chromium.org/16632009/diff/5002/chrome/browser/ui/cocoa/browser_window_controller.h File chrome/browser/ui/cocoa/browser_window_controller.h (right): https://codereview.chromium.org/16632009/diff/5002/chrome/browser/ui/cocoa/browser_window_controller.h#newcode167 ...
7 years, 6 months ago (2013-06-10 23:02:12 UTC) #6
sail
Added a browser test. Please take a look. +avi for content/* API changes. https://codereview.chromium.org/16632009/diff/5002/chrome/browser/ui/cocoa/browser_window_controller.h File ...
7 years, 6 months ago (2013-06-11 19:20:13 UTC) #7
Robert Sesek
LGTM! Thanks.
7 years, 6 months ago (2013-06-11 19:23:30 UTC) #8
Avi (use Gerrit)
https://codereview.chromium.org/16632009/diff/17001/chrome/browser/ui/cocoa/browser_window_controller_private.mm File chrome/browser/ui/cocoa/browser_window_controller_private.mm (right): https://codereview.chromium.org/16632009/diff/17001/chrome/browser/ui/cocoa/browser_window_controller_private.mm#newcode1044 chrome/browser/ui/cocoa/browser_window_controller_private.mm:1044: [self shouldAllowOverlappingViews:inPresentationMode]); What is this? This is in direct ...
7 years, 6 months ago (2013-06-11 19:25:07 UTC) #9
sail
https://codereview.chromium.org/16632009/diff/17001/chrome/browser/ui/cocoa/browser_window_controller_private.mm File chrome/browser/ui/cocoa/browser_window_controller_private.mm (right): https://codereview.chromium.org/16632009/diff/17001/chrome/browser/ui/cocoa/browser_window_controller_private.mm#newcode1044 chrome/browser/ui/cocoa/browser_window_controller_private.mm:1044: [self shouldAllowOverlappingViews:inPresentationMode]); On 2013/06/11 19:25:07, Avi wrote: > What ...
7 years, 6 months ago (2013-06-11 19:29:10 UTC) #10
Avi (use Gerrit)
Cool. LGTM I am so looking forward to ripping this crap out once we get ...
7 years, 6 months ago (2013-06-11 19:31:50 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sail@chromium.org/16632009/25001
7 years, 6 months ago (2013-06-11 19:33:56 UTC) #12
commit-bot: I haz the power
Step "update" is always a major failure. Look at the try server FAQ for more ...
7 years, 6 months ago (2013-06-11 21:04:51 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sail@chromium.org/16632009/25001
7 years, 6 months ago (2013-06-11 21:06:24 UTC) #14
commit-bot: I haz the power
Step "update" is always a major failure. Look at the try server FAQ for more ...
7 years, 6 months ago (2013-06-12 02:58:05 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sail@chromium.org/16632009/25001
7 years, 6 months ago (2013-06-12 17:17:07 UTC) #16
commit-bot: I haz the power
7 years, 6 months ago (2013-06-12 18:09:50 UTC) #17
Message was sent while issue was closed.
Change committed as 205871

Powered by Google App Engine
This is Rietveld 408576698