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

Issue 2653673006: Move loadType() to DocumentLoader (Closed)

Created:
3 years, 11 months ago by Nate Chapin
Modified:
3 years, 10 months ago
CC:
chromium-reviews, caseq+blink_chromium.org, Yoav Weiss, tyoshino+watch_chromium.org, lushnikov+blink_chromium.org, pfeldman+blink_chromium.org, apavlov+blink_chromium.org, gavinp+loader_chromium.org, devtools-reviews_chromium.org, blink-reviews, blink-reviews-bindings_chromium.org, kinuko+watch, Nate Chapin, loading-reviews_chromium.org, kozyatinskiy+blink_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Move loadType() to DocumentLoader BUG= Review-Url: https://codereview.chromium.org/2653673006 Cr-Commit-Position: refs/heads/master@{#446831} Committed: https://chromium.googlesource.com/chromium/src/+/36b47e73e35bcea80ed02f6da9f8b3652545726c

Patch Set 1 #

Patch Set 2 : Move loadType() to DocumentLoader #

Patch Set 3 : Move loadType() to DocumentLoader #

Total comments: 6

Patch Set 4 : Rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+100 lines, -78 lines) Patch
M third_party/WebKit/Source/bindings/core/v8/ScriptController.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/inspector/InspectorPageAgent.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/inspector/InspectorTracingAgent.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/loader/DocumentLoader.h View 1 2 3 2 chunks +5 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/loader/DocumentLoader.cpp View 1 2 3 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/loader/FrameFetchContext.cpp View 1 2 3 6 chunks +24 lines, -13 lines 0 comments Download
M third_party/WebKit/Source/core/loader/FrameFetchContextTest.cpp View 1 2 3 2 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/loader/FrameLoader.h View 1 2 3 5 chunks +3 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/loader/FrameLoader.cpp View 1 2 3 22 chunks +37 lines, -32 lines 0 comments Download
M third_party/WebKit/Source/core/loader/ProgressTracker.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/loader/ProgressTracker.cpp View 1 2 3 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/loader/ProgressTrackerTest.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/web/WebLocalFrameImpl.cpp View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/web/tests/ProgrammaticScrollTest.cpp View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/web/tests/WebFrameTest.cpp View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download

Dependent Patchsets:

Messages

Total messages: 35 (25 generated)
Nate Chapin
FrameLoadType is a concept specific to a single navigation, but it currently lives on FrameLoader. ...
3 years, 11 months ago (2017-01-25 00:11:37 UTC) #20
yhirano
https://codereview.chromium.org/2653673006/diff/40001/third_party/WebKit/Source/core/loader/FrameLoader.cpp File third_party/WebKit/Source/core/loader/FrameLoader.cpp (right): https://codereview.chromium.org/2653673006/diff/40001/third_party/WebKit/Source/core/loader/FrameLoader.cpp#newcode750 third_party/WebKit/Source/core/loader/FrameLoader.cpp:750: if (m_documentLoader) Can you tell me when |m_documentLoader| is ...
3 years, 11 months ago (2017-01-25 06:30:43 UTC) #21
Nate Chapin
https://codereview.chromium.org/2653673006/diff/40001/third_party/WebKit/Source/core/loader/FrameLoader.cpp File third_party/WebKit/Source/core/loader/FrameLoader.cpp (right): https://codereview.chromium.org/2653673006/diff/40001/third_party/WebKit/Source/core/loader/FrameLoader.cpp#newcode750 third_party/WebKit/Source/core/loader/FrameLoader.cpp:750: if (m_documentLoader) On 2017/01/25 06:30:43, yhirano wrote: > Can ...
3 years, 11 months ago (2017-01-25 17:25:29 UTC) #22
yhirano
Thanks for the explanation. LGTM. Though I'm not sure this is worth doing by itself, ...
3 years, 11 months ago (2017-01-27 08:34:13 UTC) #23
kouhei (in TOK)
On 2017/01/27 08:34:13, yhirano wrote: > Thanks for the explanation. LGTM. Though I'm not sure ...
3 years, 10 months ago (2017-01-27 17:13:53 UTC) #24
Nate Chapin
https://codereview.chromium.org/2653673006/diff/40001/third_party/WebKit/Source/core/loader/DocumentLoader.h File third_party/WebKit/Source/core/loader/DocumentLoader.h (right): https://codereview.chromium.org/2653673006/diff/40001/third_party/WebKit/Source/core/loader/DocumentLoader.h#newcode128 third_party/WebKit/Source/core/loader/DocumentLoader.h:128: void setReplacesCurrentHistoryItem(bool replacesCurrentHistoryItem) { On 2017/01/27 08:34:12, yhirano wrote: ...
3 years, 10 months ago (2017-01-27 17:57:56 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2653673006/40001
3 years, 10 months ago (2017-01-27 19:30:09 UTC) #27
commit-bot: I haz the power
Try jobs failed on following builders: ios-device on master.tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios-device/builds/143818) ios-device-xcode-clang on master.tryserver.chromium.mac (JOB_FAILED, ...
3 years, 10 months ago (2017-01-27 19:33:48 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2653673006/60001
3 years, 10 months ago (2017-01-27 20:40:05 UTC) #32
commit-bot: I haz the power
3 years, 10 months ago (2017-01-27 23:42:34 UTC) #35
Message was sent while issue was closed.
Committed patchset #4 (id:60001) as
https://chromium.googlesource.com/chromium/src/+/36b47e73e35bcea80ed02f6da9f8...

Powered by Google App Engine
This is Rietveld 408576698