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

Issue 23549039: Preparing to support fragment resolution against non-hierarchical schemes (Closed)

Created:
7 years, 3 months ago by Kristian Monsen
Modified:
7 years, 2 months ago
CC:
chromium-reviews, extensions-reviews_chromium.org, cbentzel+watch_chromium.org, nkostylev+watch_chromium.org, tfarina, amit, jam, joi+watch-content_chromium.org, darin-cc_chromium.org, robertshield, oshima+watch_chromium.org, grt+watch_chromium.org, chromium-apps-reviews_chromium.org, stevenjb+watch_chromium.org, davemoore+watch_chromium.org, erikwright (departed)
Visibility:
Public.

Description

Preparing to support fragment resolution against non-hierarchical schemes Adds a new GURL::GetContent() to retrieve the text after scheme: specifically intended for use in non-hierarchical schemes (data: etc). Doing the first part of https://codereview.chromium.org/23835019/ in a preparation CL. BUG=291747 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=230781

Patch Set 1 #

Patch Set 2 : Compile fix #

Patch Set 3 : Not updating the net tests #

Total comments: 6

Patch Set 4 : rebase with 3-way merge #

Patch Set 5 : another rebase #

Patch Set 6 : Addressed comments #

Total comments: 2

Patch Set 7 : checking is valid #

Total comments: 2

Patch Set 8 : std::string() instead of "" #

Total comments: 2

Patch Set 9 : Spelling mistake in comment fixed #

Unified diffs Side-by-side diffs Delta from patch set Stats (+39 lines, -14 lines) Patch
M chrome/browser/chromeos/drive/file_system_util.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/extensions/api/identity/gaia_web_auth_flow.cc View 1 2 3 1 chunk +3 lines, -3 lines 0 comments Download
M chrome/browser/extensions/api/tabs/tabs_api.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M chrome_frame/navigation_constraints.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome_frame/utils.cc View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M content/browser/browser_url_handler_impl.cc View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M content/browser/child_process_security_policy_impl.cc View 1 2 3 4 5 6 7 2 chunks +2 lines, -2 lines 0 comments Download
M url/gurl.h View 1 2 3 4 5 6 7 8 1 chunk +5 lines, -0 lines 0 comments Download
M url/gurl.cc View 1 2 3 4 5 6 7 1 chunk +4 lines, -0 lines 0 comments Download
M url/third_party/mozilla/url_parse.h View 2 chunks +11 lines, -4 lines 0 comments Download
M url/third_party/mozilla/url_parse.cc View 1 2 3 4 5 1 chunk +9 lines, -0 lines 0 comments Download

Messages

Total messages: 21 (0 generated)
Kristian Monsen
I think this is what we agreed to?
7 years, 3 months ago (2013-09-19 05:53:11 UTC) #1
joth
Yes this looks like it. Some small nits will send in morning but this will ...
7 years, 3 months ago (2013-09-19 06:15:30 UTC) #2
joth
lgtm https://codereview.chromium.org/23549039/diff/12001/chrome_frame/utils.cc File chrome_frame/utils.cc (right): https://codereview.chromium.org/23549039/diff/12001/chrome_frame/utils.cc#newcode1012 chrome_frame/utils.cc:1012: GURL sub_url(url.Content()); GetContent https://codereview.chromium.org/23549039/diff/12001/url/gurl.h File url/gurl.h (right): https://codereview.chromium.org/23549039/diff/12001/url/gurl.h#newcode227 ...
7 years, 3 months ago (2013-09-19 22:50:02 UTC) #3
Kristian Monsen
Addressed comments, looks to work on the trybots now. Will start to send reviews tomorrow ...
7 years, 3 months ago (2013-09-20 05:57:30 UTC) #4
joth
https://codereview.chromium.org/23549039/diff/29001/url/gurl.cc File url/gurl.cc (right): https://codereview.chromium.org/23549039/diff/29001/url/gurl.cc#newcode423 url/gurl.cc:423: return ComponentString(parsed_.GetContent()); return is_valid_ ? ComponentString(parsed_.GetContent()) : "";
7 years, 3 months ago (2013-09-20 18:08:15 UTC) #5
Kristian Monsen
https://codereview.chromium.org/23549039/diff/29001/url/gurl.cc File url/gurl.cc (right): https://codereview.chromium.org/23549039/diff/29001/url/gurl.cc#newcode423 url/gurl.cc:423: return ComponentString(parsed_.GetContent()); On 2013/09/20 18:08:16, joth wrote: > return ...
7 years, 3 months ago (2013-09-20 21:59:04 UTC) #6
Kristian Monsen
Brett, can you do a high level pass of this? Landing this would make https://codereview.chromium.org/23526048/ ...
7 years, 3 months ago (2013-09-20 22:46:56 UTC) #7
joth
On 2013/09/20 22:46:56, Kristian Monsen wrote: > Brett, can you do a high level pass ...
7 years, 2 months ago (2013-10-10 06:40:35 UTC) #8
brettw
Sorry! LGTM https://codereview.chromium.org/23549039/diff/42001/url/gurl.cc File url/gurl.cc (right): https://codereview.chromium.org/23549039/diff/42001/url/gurl.cc#newcode423 url/gurl.cc:423: return is_valid_ ? ComponentString(parsed_.GetContent()) : ""; Can ...
7 years, 2 months ago (2013-10-10 21:21:14 UTC) #9
Kristian Monsen
https://codereview.chromium.org/23549039/diff/42001/url/gurl.cc File url/gurl.cc (right): https://codereview.chromium.org/23549039/diff/42001/url/gurl.cc#newcode423 url/gurl.cc:423: return is_valid_ ? ComponentString(parsed_.GetContent()) : ""; On 2013/10/10 21:21:14, ...
7 years, 2 months ago (2013-10-18 05:58:22 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kristianm@chromium.org/23549039/55001
7 years, 2 months ago (2013-10-18 06:32:07 UTC) #11
Kristian Monsen
Need lgtm for various subfolders were the function is used.
7 years, 2 months ago (2013-10-18 18:23:36 UTC) #12
not at google - send to devlin
lgtm
7 years, 2 months ago (2013-10-18 18:31:28 UTC) #13
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=31285
7 years, 2 months ago (2013-10-18 18:44:38 UTC) #14
Michael Courage
chrome/browser/extensions/api/identity lgtm
7 years, 2 months ago (2013-10-18 18:52:09 UTC) #15
hashimoto
chrome/browser/chromeos/drive/file_system_util.cc lgtm https://codereview.chromium.org/23549039/diff/55001/url/gurl.h File url/gurl.h (right): https://codereview.chromium.org/23549039/diff/55001/url/gurl.h#newcode229 url/gurl.h:229: // The "content" or the URL is ...
7 years, 2 months ago (2013-10-21 03:49:05 UTC) #16
Kristian Monsen
https://codereview.chromium.org/23549039/diff/55001/url/gurl.h File url/gurl.h (right): https://codereview.chromium.org/23549039/diff/55001/url/gurl.h#newcode229 url/gurl.h:229: // The "content" or the URL is everything after ...
7 years, 2 months ago (2013-10-21 21:05:42 UTC) #17
Kristian Monsen
erikwright for chrome_frame owners.
7 years, 2 months ago (2013-10-24 00:02:37 UTC) #18
grt (UTC plus 2)
chrome_frame/* LGTM
7 years, 2 months ago (2013-10-24 12:49:04 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kristianm@chromium.org/23549039/245001
7 years, 2 months ago (2013-10-24 15:56:38 UTC) #20
commit-bot: I haz the power
7 years, 2 months ago (2013-10-24 19:05:23 UTC) #21
Message was sent while issue was closed.
Change committed as 230781

Powered by Google App Engine
This is Rietveld 408576698