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

Issue 2983533002: Revert of Provide WebContents::CreateParams to tab helpers. (Closed)

Created:
3 years, 5 months ago by Bryan McQuade
Modified:
3 years, 5 months ago
CC:
cbentzel+watch_chromium.org, chromium-reviews, creis+watch_chromium.org, csharrison+watch_chromium.org, darin-cc_chromium.org, gavinp+prer_chromium.org, jam, loading-reviews+metrics_chromium.org, nasko+codewatch_chromium.org, speed-metrics-reviews_chromium.org, tburkard+watch_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Revert of Provide WebContents::CreateParams to tab helpers. (patchset #17 id:320001 of https://codereview.chromium.org/2894973002/ ) Reason for revert: sky@ and ducboi@ found a simpler and more correct fix in https://chromium-review.googlesource.com/c/569578/, so this is no longer needed. Original issue's description: > Provide WebContents::CreateParams to tab helpers. > > With browser-side navigation enabled, navigations in new foreground tabs are > considered to have started in the background. This is a change in behavior. > This causes page load metrics to incorrectly consider these page loads to have > started in the background, which skews all of Chrome's page load metrics > (PageLoad.* in UMA). > > clamy explains: > """ > the background/foreground issue seems to be due to the ordering of calls in > chrome/browser/ui/browser_navigator.cc when we create a new tab. > What happens is: > - we first create a WebContents and ask it to navigate > (https://cs.chromium.org/chromium/src/chrome/browser/ui/browser_navigator.cc?type=cs&l=557). > This result in the creation of a NavigationHandle, so we fire DidStartNavigation. > In the current architecture, we fire DidStartNavigation after receiving > DidStartProvisionalLoad. > - then we insert the WebContents in the tab strip > (https://cs.chromium.org/chromium/src/chrome/browser/ui/browser_navigator.cc?type=cs&l=589). > This fires WebContentsImpl::WasShown. > """ > > This patch implements Nasko's proposed fix to expose the WebContents > CreateParams to interested WebContentsObservers, page load metrics's > MetricsWebContentsObserver being the first consumer. > > We don't have the CreateParams in all places where a WebContents is passed to > TabHelpers, so we wrap the CreateParams in a base::Optional<> and provide > CreateParams in cases where they are available. > > BUG=725347 > > Review-Url: https://codereview.chromium.org/2894973002 > Cr-Commit-Position: refs/heads/master@{#474895} > Committed: https://chromium.googlesource.com/chromium/src/+/42b72063edb66bfd015bd9dea116c3e3e937d3eb TBR=avi@chromium.org,boliu@chromium.org,dgozman@chromium.org,fsamuel@chromium.org,mariakhomenko@chromium.org,mattcary@chromium.org,pkasting@chromium.org,skyostil@chromium.org # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=725347

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+93 lines, -174 lines) Patch
M android_webview/browser/aw_web_contents_delegate.h View 1 chunk +6 lines, -9 lines 0 comments Download
M android_webview/browser/aw_web_contents_delegate.cc View 1 chunk +1 line, -2 lines 0 comments Download
M chrome/browser/android/tab_android.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/android/tab_web_contents_delegate_android.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/devtools/devtools_window.h View 2 chunks +6 lines, -10 lines 0 comments Download
M chrome/browser/devtools/devtools_window.cc View 1 chunk +6 lines, -8 lines 0 comments Download
M chrome/browser/page_load_metrics/metrics_web_contents_observer.h View 1 chunk +0 lines, -2 lines 0 comments Download
M chrome/browser/page_load_metrics/metrics_web_contents_observer.cc View 2 chunks +2 lines, -12 lines 0 comments Download
M chrome/browser/page_load_metrics/metrics_web_contents_observer_unittest.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/page_load_metrics/observers/page_load_metrics_observer_test_harness.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/page_load_metrics/page_load_metrics_browsertest.cc View 1 chunk +0 lines, -25 lines 0 comments Download
M chrome/browser/page_load_metrics/page_load_metrics_initialize.h View 1 chunk +1 line, -2 lines 0 comments Download
M chrome/browser/page_load_metrics/page_load_metrics_initialize.cc View 1 chunk +2 lines, -4 lines 0 comments Download
M chrome/browser/prerender/prerender_contents.h View 3 chunks +1 line, -2 lines 0 comments Download
M chrome/browser/prerender/prerender_contents.cc View 2 chunks +4 lines, -8 lines 0 comments Download
M chrome/browser/ui/browser.h View 1 chunk +6 lines, -9 lines 0 comments Download
M chrome/browser/ui/browser.cc View 1 chunk +7 lines, -9 lines 0 comments Download
M chrome/browser/ui/browser_navigator.cc View 2 chunks +3 lines, -6 lines 0 comments Download
M chrome/browser/ui/browser_tab_strip_model_delegate.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/tab_helpers.h View 2 chunks +5 lines, -6 lines 0 comments Download
M chrome/browser/ui/tab_helpers.cc View 2 chunks +2 lines, -4 lines 0 comments Download
M components/web_contents_delegate_android/web_contents_delegate_android.h View 2 chunks +7 lines, -10 lines 0 comments Download
M components/web_contents_delegate_android/web_contents_delegate_android.cc View 1 chunk +1 line, -2 lines 0 comments Download
M content/browser/web_contents/web_contents_impl.cc View 1 chunk +3 lines, -3 lines 0 comments Download
M content/public/browser/web_contents_delegate.h View 3 chunks +7 lines, -9 lines 0 comments Download
M extensions/browser/guest_view/web_view/web_view_guest.h View 2 chunks +6 lines, -10 lines 0 comments Download
M extensions/browser/guest_view/web_view/web_view_guest.cc View 1 chunk +6 lines, -8 lines 0 comments Download
M headless/lib/browser/headless_web_contents_impl.cc View 1 chunk +6 lines, -9 lines 0 comments Download

Messages

Total messages: 4 (2 generated)
Bryan McQuade
Created Revert of Provide WebContents::CreateParams to tab helpers.
3 years, 5 months ago (2017-07-14 00:02:24 UTC) #2
Avi (use Gerrit)
3 years, 5 months ago (2017-07-14 00:37:57 UTC) #4
Message was sent while issue was closed.
lgtm

Powered by Google App Engine
This is Rietveld 408576698