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

Issue 610893003: Remove #ifdefs around ShowLinkDisambiguationPopup (Closed)

Created:
6 years, 2 months ago by tapted
Modified:
6 years, 2 months ago
Reviewers:
Avi (use Gerrit)
CC:
chromium-reviews, creis+watch_chromium.org, yusukes+watch_chromium.org, yukishiino+watch_chromium.org, nasko+codewatch_chromium.org, jam, penghuang+watch_chromium.org, nona+watch_chromium.org, darin-cc_chromium.org, mkwst+moarreviews-shell_chromium.org, James Su, jochen+watch_chromium.org, chrome-apps-syd-reviews_chromium.org, dnicoara
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Remove #ifdefs around ShowLinkDisambiguationPopup Current efforts are aimed at harmonizing our UI code. #ifdefs work against this and have a lot of downsides besides. This is a follow-up to http://crrev.com/351683002 -- a long-running CL which added ShowLinkDisambiguationPopup to Aura -- and http://crrev.com/596373002 which fixed some build problems with that. However, toolkit_views=1 use_aura=0 which is in use on Mac still has problems. This CL adds default method definitions to WebContentsViewDelegate and RenderWidgetHostViewBase. Essentially moving a NOTIMPLEMENTED() guarded by #ifdefs into a base class method, and removing some unnecessary boilerplate. BUG=385249, 399191 Committed: https://crrev.com/7e0b5922f9c88d1a733bf95c084c9f1646a8777e Cr-Commit-Position: refs/heads/master@{#297360}

Patch Set 1 #

Patch Set 2 : callback_forward #

Total comments: 2

Patch Set 3 : fix my awful spelling #

Unified diffs Side-by-side diffs Delta from patch set Stats (+34 lines, -56 lines) Patch
M content/browser/frame_host/render_widget_host_view_child_frame.h View 1 chunk +0 lines, -6 lines 0 comments Download
M content/browser/frame_host/render_widget_host_view_child_frame.cc View 1 chunk +0 lines, -7 lines 0 comments Download
M content/browser/renderer_host/render_widget_host_impl.cc View 1 chunk +0 lines, -4 lines 0 comments Download
M content/browser/renderer_host/render_widget_host_view_base.h View 1 2 1 chunk +6 lines, -4 lines 0 comments Download
M content/browser/renderer_host/render_widget_host_view_base.cc View 1 chunk +13 lines, -0 lines 0 comments Download
M content/public/browser/web_contents_view_delegate.h View 1 4 chunks +4 lines, -6 lines 0 comments Download
M content/public/browser/web_contents_view_delegate.cc View 1 chunk +11 lines, -0 lines 0 comments Download
M content/shell/browser/shell_web_contents_view_delegate.h View 1 chunk +0 lines, -11 lines 0 comments Download
M content/shell/browser/shell_web_contents_view_delegate_win.cc View 1 chunk +0 lines, -13 lines 0 comments Download
M content/test/test_render_view_host.h View 1 chunk +0 lines, -5 lines 0 comments Download

Messages

Total messages: 14 (5 generated)
tapted
Hi avi, please take a look cc dnicoara/luken FYI (I've run some linux_ecs_ozone jobs - ...
6 years, 2 months ago (2014-09-29 07:00:31 UTC) #3
Avi (use Gerrit)
lgtm https://codereview.chromium.org/610893003/diff/40001/content/browser/renderer_host/render_widget_host_view_base.h File content/browser/renderer_host/render_widget_host_view_base.h (right): https://codereview.chromium.org/610893003/diff/40001/content/browser/renderer_host/render_widget_host_view_base.h#newcode334 content/browser/renderer_host/render_widget_host_view_base.h:334: // Called by the RenderFrameHost when it recieves ...
6 years, 2 months ago (2014-09-29 14:32:10 UTC) #4
tapted
Thanks! https://codereview.chromium.org/610893003/diff/40001/content/browser/renderer_host/render_widget_host_view_base.h File content/browser/renderer_host/render_widget_host_view_base.h (right): https://codereview.chromium.org/610893003/diff/40001/content/browser/renderer_host/render_widget_host_view_base.h#newcode334 content/browser/renderer_host/render_widget_host_view_base.h:334: // Called by the RenderFrameHost when it recieves ...
6 years, 2 months ago (2014-09-29 23:06:58 UTC) #5
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/610893003/60001
6 years, 2 months ago (2014-09-29 23:09:06 UTC) #7
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_swarming on tryserver.chromium.win (http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_swarming/builds/17275)
6 years, 2 months ago (2014-09-30 01:46:49 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/610893003/60001
6 years, 2 months ago (2014-09-30 02:52:30 UTC) #11
commit-bot: I haz the power
Committed patchset #3 (id:60001) as f07af7b5a951c9ad706cc3ea9228aa9ecbd418ab
6 years, 2 months ago (2014-09-30 04:19:13 UTC) #12
commit-bot: I haz the power
Patchset 3 (id:??) landed as https://crrev.com/7e0b5922f9c88d1a733bf95c084c9f1646a8777e Cr-Commit-Position: refs/heads/master@{#297360}
6 years, 2 months ago (2014-09-30 04:20:10 UTC) #13
luken
6 years, 2 months ago (2014-09-30 17:49:31 UTC) #14
Message was sent while issue was closed.
On 2014/09/30 04:20:10, I haz the power (commit-bot) wrote:
> Patchset 3 (id:??) landed as
> https://crrev.com/7e0b5922f9c88d1a733bf95c084c9f1646a8777e
> Cr-Commit-Position: refs/heads/master@{#297360}

Thanks for fixing this!

Powered by Google App Engine
This is Rietveld 408576698