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

Issue 1970693002: Use mojo for Chrome Loading, Part 1 (Closed)

Created:
4 years, 7 months ago by yhirano
Modified:
4 years, 4 months ago
CC:
Aaron Boodman, abarth-chromium, ben+mojo_chromium.org, blink-reviews, blink-reviews-api_chromium.org, cbentzel+watch_chromium.org, chromium-reviews, creis+watch_chromium.org, darin (slow to review), darin-cc_chromium.org, dglazkov+blink, kinuko+watch, loading-reviews_chromium.org, mkwst+moarreviews-renderer_chromium.org, mlamouri+watch-content_chromium.org, nasko+codewatch_chromium.org, qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org, dcheng
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Use mojo for Chrome Loading, Part 1 This CL introduces content::mojom::URLLoader for Chrome Loading with mojo. Currently the loader is used only in LayoutTests/virtual/mojo-loading tests, and it lacks a lot of functionalities. I will implement more features in subsequent CLs. BUG=603396 Committed: https://crrev.com/72f62279cd7c4370dd7e068b900d9359a7e9589c Cr-Commit-Position: refs/heads/master@{#411894}

Patch Set 1 : #

Total comments: 4

Patch Set 2 : #

Total comments: 14

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Patch Set 8 : mojo::Watcher doesn't work #

Patch Set 9 : #

Patch Set 10 : #

Total comments: 1

Patch Set 11 : #

Patch Set 12 : #

Patch Set 13 : #

Patch Set 14 : #

Patch Set 15 : #

Patch Set 16 : #

Total comments: 29

Patch Set 17 : #

Patch Set 18 : #

Total comments: 6

Patch Set 19 : #

Patch Set 20 : #

Patch Set 21 : #

Patch Set 22 : #

Total comments: 17

Patch Set 23 : #

Patch Set 24 : #

Patch Set 25 : #

Total comments: 11

Patch Set 26 : #

Patch Set 27 : #

Patch Set 28 : #

Patch Set 29 : #

Total comments: 27

Patch Set 30 : #

Patch Set 31 : #

Patch Set 32 : #

Total comments: 60

Patch Set 33 : #

Patch Set 34 : #

Patch Set 35 : #

Patch Set 36 : #

Patch Set 37 : #

Patch Set 38 : #

Patch Set 39 : #

Patch Set 40 : #

Patch Set 41 #

Total comments: 2

Patch Set 42 : #

Patch Set 43 : #

Patch Set 44 : #

Patch Set 45 : #

Patch Set 46 : #

Total comments: 45

Patch Set 47 : rebase #

Patch Set 48 : gn fix #

Patch Set 49 : fix #

Patch Set 50 : fix #

Total comments: 21

Patch Set 51 : rebase #

Patch Set 52 : fix #

Total comments: 32

Patch Set 53 : fix #

Patch Set 54 : fix #

Total comments: 47

Patch Set 55 : rebase #

Patch Set 56 : fix #

Patch Set 57 : rebase #

Total comments: 48

Patch Set 58 : rebase #

Patch Set 59 : fix #

Patch Set 60 : rebase #

Patch Set 61 : rebase #

Patch Set 62 : fix #

Patch Set 63 : rebase #

Patch Set 64 : rebase #

Total comments: 68

Patch Set 65 : fix #

Patch Set 66 : rebase #

Patch Set 67 : build fix #

Patch Set 68 : fix #

Patch Set 69 : fix #

Patch Set 70 : fix #

Patch Set 71 : rebase #

Patch Set 72 : fix #

Total comments: 6

Patch Set 73 : fix #

Patch Set 74 : mv url_loader_factory_holder url_loader_factory_impl #

Patch Set 75 : rebase #

Patch Set 76 : fix #

Patch Set 77 : build fix #

Patch Set 78 : fix #

Patch Set 79 : fix #

Patch Set 80 : fix #

Total comments: 1

Patch Set 81 : rebase #

Patch Set 82 : build fix #

Patch Set 83 : rebase #

Patch Set 84 : rebase #

Patch Set 85 : build fix #

Patch Set 86 : fix #

Patch Set 87 : fix #

Patch Set 88 : rebase #

Patch Set 89 : g #

Patch Set 90 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+3054 lines, -50 lines) Patch
M content/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/loader/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 4 chunks +75 lines, -0 lines 0 comments Download
M content/browser/loader/async_resource_handler_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 1 chunk +1 line, -0 lines 0 comments Download
A content/browser/loader/mojo_async_resource_handler.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 1 chunk +123 lines, -0 lines 0 comments Download
A content/browser/loader/mojo_async_resource_handler.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 1 chunk +400 lines, -0 lines 0 comments Download
A content/browser/loader/mojo_async_resource_handler_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 1 chunk +1151 lines, -0 lines 0 comments Download
M content/browser/loader/resource_dispatcher_host_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 8 chunks +35 lines, -2 lines 0 comments Download
M content/browser/loader/resource_dispatcher_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 18 chunks +72 lines, -15 lines 0 comments Download
M content/browser/loader/resource_message_filter.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 75 76 77 78 79 80 3 chunks +6 lines, -0 lines 0 comments Download
M content/browser/loader/resource_message_filter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 75 76 77 78 79 80 2 chunks +7 lines, -0 lines 0 comments Download
A content/browser/loader/test_url_loader_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 1 chunk +63 lines, -0 lines 0 comments Download
A content/browser/loader/test_url_loader_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 1 chunk +67 lines, -0 lines 0 comments Download
A content/browser/loader/url_loader_factory_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 1 chunk +49 lines, -0 lines 0 comments Download
A content/browser/loader/url_loader_factory_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 chunk +50 lines, -0 lines 0 comments Download
A content/browser/loader/url_loader_factory_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 1 chunk +243 lines, -0 lines 0 comments Download
M content/browser/renderer_host/render_process_host_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 2 chunks +3 lines, -0 lines 0 comments Download
M content/browser/renderer_host/render_process_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 5 chunks +9 lines, -4 lines 0 comments Download
M content/child/resource_dispatcher.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 5 chunks +19 lines, -3 lines 0 comments Download
M content/child/resource_dispatcher.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 6 chunks +71 lines, -8 lines 0 comments Download
M content/child/resource_dispatcher_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 1 chunk +3 lines, -2 lines 0 comments Download
A content/child/url_response_body_consumer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 1 chunk +75 lines, -0 lines 0 comments Download
A content/child/url_response_body_consumer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 1 chunk +127 lines, -0 lines 0 comments Download
A content/child/url_response_body_consumer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 1 chunk +211 lines, -0 lines 0 comments Download
M content/child/web_url_loader_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 2 chunks +3 lines, -1 line 0 comments Download
M content/child/web_url_loader_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 7 chunks +17 lines, -7 lines 0 comments Download
M content/child/web_url_loader_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 2 chunks +8 lines, -3 lines 0 comments Download
M content/common/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 3 chunks +7 lines, -0 lines 0 comments Download
A + content/common/typemaps.gni View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 1 chunk +3 lines, -2 lines 0 comments Download
A content/common/url_loader.mojom View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 1 chunk +39 lines, -0 lines 0 comments Download
A content/common/url_loader_factory.mojom View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 1 chunk +18 lines, -0 lines 0 comments Download
A content/common/url_loader_status.typemap View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 1 chunk +14 lines, -0 lines 0 comments Download
A content/common/url_request.typemap View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 1 chunk +14 lines, -0 lines 0 comments Download
A content/common/url_response_head.typemap View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 1 chunk +14 lines, -0 lines 0 comments Download
M content/content_browser.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 3 chunks +5 lines, -0 lines 0 comments Download
M content/content_child.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 1 chunk +2 lines, -0 lines 0 comments Download
M content/content_tests.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 2 chunks +5 lines, -0 lines 0 comments Download
M content/public/common/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 2 chunks +7 lines, -1 line 0 comments Download
M content/renderer/renderer_blink_platform_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 2 chunks +3 lines, -0 lines 0 comments Download
M content/renderer/renderer_blink_platform_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 1 chunk +4 lines, -1 line 0 comments Download
A + content/test/data/hello.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 1 chunk +1 line, -0 lines 0 comments Download
A content/test/data/hello.html.mock-http-headers View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 1 chunk +2 lines, -0 lines 0 comments Download
M content/test/test_blink_web_unit_test_support.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 1 chunk +1 line, -1 line 0 comments Download
M mojo/public/tools/bindings/chromium_bindings_configuration.gni View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/VirtualTestSuites View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 1 chunk +5 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/virtual/mojo-loading/webexposed/README.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/exported/WebURLRequest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 2 chunks +8 lines, -0 lines 0 comments Download
M third_party/WebKit/public/platform/WebURLRequest.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 2 chunks +7 lines, -0 lines 0 comments Download

Depends on Patchset:

Messages

Total messages: 332 (220 generated)
yhirano
4 years, 7 months ago (2016-05-11 15:35:47 UTC) #21
dcheng
https://codereview.chromium.org/1970693002/diff/290001/content/common/url_loader.mojom File content/common/url_loader.mojom (right): https://codereview.chromium.org/1970693002/diff/290001/content/common/url_loader.mojom#newcode33 content/common/url_loader.mojom:33: string url; Use url.mojom.Url? https://codereview.chromium.org/1970693002/diff/290001/content/common/url_loader_type_converters.cc File content/common/url_loader_type_converters.cc (right): https://codereview.chromium.org/1970693002/diff/290001/content/common/url_loader_type_converters.cc#newcode53 ...
4 years, 7 months ago (2016-05-11 17:05:18 UTC) #23
jam
this looks great. just minor comments. regarding testing: we should have unit tests for this ...
4 years, 7 months ago (2016-05-13 00:55:06 UTC) #24
yhirano
Sorry for the late response. I will address jam@'s comments tomorrow. https://codereview.chromium.org/1970693002/diff/290001/content/common/url_loader.mojom File content/common/url_loader.mojom (right): ...
4 years, 7 months ago (2016-05-16 14:40:06 UTC) #25
jam
it's fine to reuse the existing C++ struct with their IPC traits since this service ...
4 years, 7 months ago (2016-05-16 16:56:02 UTC) #26
yzshen1
https://codereview.chromium.org/1970693002/diff/410001/content/DEPS File content/DEPS (right): https://codereview.chromium.org/1970693002/diff/410001/content/DEPS#newcode35 content/DEPS:35: "+mojo/message_pump", We would like to remove it entirely and ...
4 years, 7 months ago (2016-05-16 19:26:25 UTC) #27
yhirano
Oops, I accidentally deleted PS7. Let me respond inline. Sorry for the inconvenience. On 2016/05/16 ...
4 years, 7 months ago (2016-05-17 07:25:17 UTC) #30
yhirano
On 2016/05/16 16:56:02, jam wrote: > it's fine to reuse the existing C++ struct with ...
4 years, 7 months ago (2016-05-17 07:28:49 UTC) #31
yhirano
I added content/browser/loader/url_loader_factory_impl_unittest.cc and content/child/url_response_body_consumer_unittest.cc. https://codereview.chromium.org/1970693002/diff/310001/content/browser/loader/resource_dispatcher_host_impl.cc File content/browser/loader/resource_dispatcher_host_impl.cc (right): https://codereview.chromium.org/1970693002/diff/310001/content/browser/loader/resource_dispatcher_host_impl.cc#newcode1799 content/browser/loader/resource_dispatcher_host_impl.cc:1799: DCHECK(loader); On 2016/05/13 00:55:05, ...
4 years, 7 months ago (2016-05-17 12:38:49 UTC) #32
yhirano
https://codereview.chromium.org/1970693002/diff/510001/content/browser/loader/url_loader_factory_impl_unittest.cc File content/browser/loader/url_loader_factory_impl_unittest.cc (right): https://codereview.chromium.org/1970693002/diff/510001/content/browser/loader/url_loader_factory_impl_unittest.cc#newcode199 content/browser/loader/url_loader_factory_impl_unittest.cc:199: &std::remove_reference<decltype(*this)>::type::RecordURLRequest, I tried to avoid compile errors with this ...
4 years, 7 months ago (2016-05-17 14:58:54 UTC) #33
yzshen1
Hi, I haven't seen anything obviously wrong with your change. It would be helpful if ...
4 years, 7 months ago (2016-05-17 17:56:30 UTC) #34
jam
On 2016/05/17 07:28:49, yhirano wrote: > On 2016/05/16 16:56:02, jam wrote: > > it's fine ...
4 years, 7 months ago (2016-05-17 22:00:21 UTC) #35
yhirano
On 2016/05/17 17:56:30, yzshen1 wrote: > Hi, > > I haven't seen anything obviously wrong ...
4 years, 7 months ago (2016-05-18 06:50:05 UTC) #36
yhirano
On 2016/05/17 22:00:21, jam wrote: > On 2016/05/17 07:28:49, yhirano wrote: > > On 2016/05/16 ...
4 years, 7 months ago (2016-05-18 08:32:04 UTC) #37
yzshen1
On Tue, May 17, 2016 at 11:50 PM, <yhirano@chromium.org> wrote: > On 2016/05/17 17:56:30, yzshen1 ...
4 years, 7 months ago (2016-05-18 16:10:08 UTC) #38
yzshen1
On Tue, May 17, 2016 at 11:50 PM, <yhirano@chromium.org> wrote: > On 2016/05/17 17:56:30, yzshen1 ...
4 years, 7 months ago (2016-05-18 16:10:09 UTC) #39
yhirano
> Do you mind testing the browser side using mojo::Watcher, but the renderer > side ...
4 years, 7 months ago (2016-05-18 16:14:38 UTC) #40
Ken Rockot(use gerrit already)
On 2016/05/18 at 16:10:09, yzshen wrote: > On Tue, May 17, 2016 at 11:50 PM, ...
4 years, 7 months ago (2016-05-18 16:19:55 UTC) #41
yzshen1
On 2016/05/18 16:19:55, Ken Rockot wrote: > On 2016/05/18 at 16:10:09, yzshen wrote: > > ...
4 years, 7 months ago (2016-05-18 16:24:34 UTC) #42
jam
On 2016/05/18 08:32:04, yhirano wrote: > On 2016/05/17 22:00:21, jam wrote: > > On 2016/05/17 ...
4 years, 7 months ago (2016-05-18 17:00:19 UTC) #43
kinuko
(Sorry for slow response!) Generally looking good, I haven't looked into the test code & ...
4 years, 7 months ago (2016-05-20 09:38:52 UTC) #44
yhirano
https://codereview.chromium.org/1970693002/diff/620001/content/browser/loader/async_resource_handler.cc File content/browser/loader/async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/620001/content/browser/loader/async_resource_handler.cc#newcode369 content/browser/loader/async_resource_handler.cc:369: } On 2016/05/20 09:38:51, kinuko wrote: > nit: having ...
4 years, 7 months ago (2016-05-20 11:32:54 UTC) #45
kinuko
Some more comments (will take further look next week) (Gotchas around RDH still bothers me ...
4 years, 7 months ago (2016-05-20 15:56:47 UTC) #46
yhirano
https://codereview.chromium.org/1970693002/diff/620001/third_party/WebKit/LayoutTests/VirtualTestSuites File third_party/WebKit/LayoutTests/VirtualTestSuites (right): https://codereview.chromium.org/1970693002/diff/620001/third_party/WebKit/LayoutTests/VirtualTestSuites#newcode258 third_party/WebKit/LayoutTests/VirtualTestSuites:258: "base": "webexposed", On 2016/05/20 15:56:46, kinuko wrote: > On ...
4 years, 7 months ago (2016-05-23 11:29:37 UTC) #47
mmenke
Some quick comments. I'm concerned about the circular dependencies this introduces, and wonder if ResourceLoader ...
4 years, 7 months ago (2016-05-23 17:34:53 UTC) #49
yzshen1
On 2016/05/18 16:24:34, yzshen1 wrote: > On 2016/05/18 16:19:55, Ken Rockot wrote: > > On ...
4 years, 7 months ago (2016-05-23 17:46:24 UTC) #50
yhirano
https://codereview.chromium.org/1970693002/diff/740001/content/browser/loader/async_resource_handler.cc File content/browser/loader/async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/740001/content/browser/loader/async_resource_handler.cc#newcode195 content/browser/loader/async_resource_handler.cc:195: class AsyncResourceHandler::MojoHelper final { On 2016/05/23 17:34:53, mmenke wrote: ...
4 years, 7 months ago (2016-05-24 06:40:04 UTC) #51
yhirano
https://codereview.chromium.org/1970693002/diff/740001/content/browser/loader/resource_dispatcher_host_impl.cc File content/browser/loader/resource_dispatcher_host_impl.cc (right): https://codereview.chromium.org/1970693002/diff/740001/content/browser/loader/resource_dispatcher_host_impl.cc#newcode603 content/browser/loader/resource_dispatcher_host_impl.cc:603: client->OnReceiveResponse(head, loader->GetRequestInfo()->TakeBodyReader()); On 2016/05/23 17:34:53, mmenke wrote: > Why ...
4 years, 7 months ago (2016-05-24 08:03:21 UTC) #52
mmenke
[+rdsmith]: FYI Plan to do another pass later today.
4 years, 7 months ago (2016-05-24 15:16:33 UTC) #54
mmenke
https://codereview.chromium.org/1970693002/diff/800001/content/browser/loader/async_resource_handler.cc File content/browser/loader/async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/800001/content/browser/loader/async_resource_handler.cc#newcode198 content/browser/loader/async_resource_handler.cc:198: class AsyncResourceHandler::MojoHelper final { Long term, is the plan ...
4 years, 7 months ago (2016-05-24 20:01:35 UTC) #55
mmenke
https://codereview.chromium.org/1970693002/diff/800001/content/browser/loader/resource_dispatcher_host_impl.cc File content/browser/loader/resource_dispatcher_host_impl.cc (right): https://codereview.chromium.org/1970693002/diff/800001/content/browser/loader/resource_dispatcher_host_impl.cc#newcode1767 content/browser/loader/resource_dispatcher_host_impl.cc:1767: handler.reset(new AsyncResourceHandler(request, this, using_mojo)); Why doesn't the AsyncResourceHandler take ...
4 years, 7 months ago (2016-05-24 20:06:08 UTC) #56
mmenke
https://codereview.chromium.org/1970693002/diff/800001/content/browser/loader/resource_dispatcher_host_impl.cc File content/browser/loader/resource_dispatcher_host_impl.cc (right): https://codereview.chromium.org/1970693002/diff/800001/content/browser/loader/resource_dispatcher_host_impl.cc#newcode1767 content/browser/loader/resource_dispatcher_host_impl.cc:1767: handler.reset(new AsyncResourceHandler(request, this, using_mojo)); On 2016/05/24 20:06:07, mmenke wrote: ...
4 years, 7 months ago (2016-05-25 04:39:03 UTC) #57
kinuko
On 2016/05/25 04:39:03, mmenke wrote: > https://codereview.chromium.org/1970693002/diff/800001/content/browser/loader/resource_dispatcher_host_impl.cc > File content/browser/loader/resource_dispatcher_host_impl.cc (right): > > https://codereview.chromium.org/1970693002/diff/800001/content/browser/loader/resource_dispatcher_host_impl.cc#newcode1767 > ...
4 years, 7 months ago (2016-05-25 05:11:50 UTC) #58
yhirano
On 2016/05/25 05:11:50, kinuko wrote: > On 2016/05/25 04:39:03, mmenke wrote: > > > https://codereview.chromium.org/1970693002/diff/800001/content/browser/loader/resource_dispatcher_host_impl.cc ...
4 years, 7 months ago (2016-05-25 05:23:58 UTC) #59
yhirano
https://codereview.chromium.org/1970693002/diff/800001/content/browser/loader/async_resource_handler.cc File content/browser/loader/async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/800001/content/browser/loader/async_resource_handler.cc#newcode198 content/browser/loader/async_resource_handler.cc:198: class AsyncResourceHandler::MojoHelper final { On 2016/05/24 20:01:35, mmenke wrote: ...
4 years, 7 months ago (2016-05-25 12:47:06 UTC) #60
mmenke
I'm much happier with this. Haven't taken a close look at the new resource handler, ...
4 years, 7 months ago (2016-05-25 16:17:20 UTC) #61
kinuko
A few lightweight comments https://codereview.chromium.org/1970693002/diff/880001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/880001/content/browser/loader/mojo_async_resource_handler.cc#newcode197 content/browser/loader/mojo_async_resource_handler.cc:197: // Not implemented. NOTIMPLEMENTED() ? ...
4 years, 7 months ago (2016-05-26 08:43:13 UTC) #62
mmenke
https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/resource_dispatcher_host_impl.cc File content/browser/loader/resource_dispatcher_host_impl.cc (right): https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/resource_dispatcher_host_impl.cc#newcode1432 content/browser/loader/resource_dispatcher_host_impl.cc:1432: if (it != pending_loaders_.end()) { This case isn't being ...
4 years, 7 months ago (2016-05-26 15:18:49 UTC) #63
yhirano
https://codereview.chromium.org/1970693002/diff/880001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/880001/content/browser/loader/mojo_async_resource_handler.cc#newcode31 content/browser/loader/mojo_async_resource_handler.cc:31: int maxAllocationSize = 1024 * 32; On 2016/05/25 16:17:20, ...
4 years, 7 months ago (2016-05-26 15:42:45 UTC) #64
mmenke
Here's another round of comments. Want to add some more this afternoon, but publishing now ...
4 years, 7 months ago (2016-05-26 16:28:30 UTC) #65
mmenke
https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/mojo_async_resource_handler.cc#newcode99 content/browser/loader/mojo_async_resource_handler.cc:99: } Seems like we shouldn't include this code until ...
4 years, 7 months ago (2016-05-26 21:46:09 UTC) #66
yhirano
I'll fix test code next week. https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/mojo_async_resource_handler.cc#newcode99 content/browser/loader/mojo_async_resource_handler.cc:99: } On 2016/05/26 ...
4 years, 6 months ago (2016-05-27 11:30:34 UTC) #67
mmenke
https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/mojo_async_resource_handler.cc#newcode144 content/browser/loader/mojo_async_resource_handler.cc:144: return false; On 2016/05/27 11:30:34, yhirano wrote: > On ...
4 years, 6 months ago (2016-05-27 15:39:26 UTC) #68
mmenke
https://codereview.chromium.org/1970693002/diff/940001/content/common/url_loader_factory.mojom File content/common/url_loader_factory.mojom (right): https://codereview.chromium.org/1970693002/diff/940001/content/common/url_loader_factory.mojom#newcode10 content/common/url_loader_factory.mojom:10: CreateURLLoader(URLLoader& loader); On 2016/05/27 15:39:26, mmenke wrote: > On ...
4 years, 6 months ago (2016-05-27 15:41:04 UTC) #69
yhirano
https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/mojo_async_resource_handler.cc#newcode149 content/browser/loader/mojo_async_resource_handler.cc:149: // SHOULD_WAIT should be handled in OnReadCompleted. On 2016/05/27 ...
4 years, 6 months ago (2016-05-30 12:41:45 UTC) #70
yzshen1
https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/mojo_async_resource_handler.cc#newcode149 content/browser/loader/mojo_async_resource_handler.cc:149: // SHOULD_WAIT should be handled in OnReadCompleted. On 2016/05/30 ...
4 years, 6 months ago (2016-05-31 21:07:39 UTC) #72
yhirano
https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/mojo_async_resource_handler.cc#newcode149 content/browser/loader/mojo_async_resource_handler.cc:149: // SHOULD_WAIT should be handled in OnReadCompleted. On 2016/05/31 ...
4 years, 6 months ago (2016-06-01 14:40:52 UTC) #73
yhirano
memo: Unresolved 1: https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/url_loader_factory_impl.cc#newcode23 Unresolved 2: https://codereview.chromium.org/1970693002/diff/940001/content/common/url_loader_factory.mojom#newcode10
4 years, 6 months ago (2016-06-01 14:45:18 UTC) #74
mmenke
On 2016/06/01 14:45:18, yhirano wrote: > memo: > Unresolved 1: > https://codereview.chromium.org/1970693002/diff/940001/content/browser/loader/url_loader_factory_impl.cc#newcode23 > Unresolved 2: ...
4 years, 6 months ago (2016-06-01 15:07:08 UTC) #75
mmenke
On 2016/06/01 15:07:08, mmenke (OOO May 30-31) wrote: > On 2016/06/01 14:45:18, yhirano wrote: > ...
4 years, 6 months ago (2016-06-01 15:08:12 UTC) #76
yhirano
> I'm also concerned about the assumptions this makes about when > mojo::BeginWriteDataRaw may / ...
4 years, 6 months ago (2016-06-02 13:15:35 UTC) #77
yhirano
https://codereview.chromium.org/1970693002/diff/1120001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1120001/content/browser/loader/mojo_async_resource_handler.cc#newcode138 content/browser/loader/mojo_async_resource_handler.cc:138: MojoResult result = mojo::BeginWriteDataRaw( I've just noticed that this ...
4 years, 6 months ago (2016-06-03 11:27:45 UTC) #78
yhirano
> I'm also concerned about the assumptions this makes about when > mojo::BeginWriteDataRaw may / ...
4 years, 6 months ago (2016-06-06 22:54:03 UTC) #80
yhirano
https://codereview.chromium.org/1970693002/diff/940001/content/common/url_loader_factory.mojom File content/common/url_loader_factory.mojom (right): https://codereview.chromium.org/1970693002/diff/940001/content/common/url_loader_factory.mojom#newcode10 content/common/url_loader_factory.mojom:10: CreateURLLoader(URLLoader& loader); On 2016/05/27 15:41:04, mmenke wrote: > On ...
4 years, 6 months ago (2016-06-07 08:16:57 UTC) #81
yhirano
ping
4 years, 6 months ago (2016-06-13 08:34:42 UTC) #82
mmenke
On 2016/06/13 08:34:42, yhirano wrote: > ping Sorry, hadn't realized this was ready for another ...
4 years, 6 months ago (2016-06-13 14:50:29 UTC) #83
mmenke
https://codereview.chromium.org/1970693002/diff/1240001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1240001/content/browser/loader/mojo_async_resource_handler.cc#newcode57 content/browser/loader/mojo_async_resource_handler.cc:57: class MojoAsyncResourceHandler::SharedWriter final This class needs to be documented. ...
4 years, 6 months ago (2016-06-13 20:56:59 UTC) #84
yhirano
I have some questions about test coverage: How much coverage do you want for content/browser/loader ...
4 years, 6 months ago (2016-06-13 22:41:20 UTC) #85
mmenke
On 2016/06/13 22:41:20, yhirano wrote: > I have some questions about test coverage: How much ...
4 years, 6 months ago (2016-06-13 23:21:48 UTC) #86
mmenke
On 2016/06/13 23:21:48, mmenke wrote: > On 2016/06/13 22:41:20, yhirano wrote: > > I have ...
4 years, 6 months ago (2016-06-13 23:27:58 UTC) #87
kinuko
(haven't read through the new patch yet, just making a brief comment & some questions) ...
4 years, 6 months ago (2016-06-14 08:45:29 UTC) #88
yhirano
Sorry for the long delay. Regarding tests: Thank you, I understand. I think such tests ...
4 years, 5 months ago (2016-07-12 10:49:12 UTC) #105
mmenke
I expect to get to another full pass this week, but probably won't be today ...
4 years, 5 months ago (2016-07-12 15:10:45 UTC) #106
yhirano
https://codereview.chromium.org/1970693002/diff/1240001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1240001/content/browser/loader/mojo_async_resource_handler.cc#newcode326 content/browser/loader/mojo_async_resource_handler.cc:326: if (buffer_bytes_read_ == 0) { On 2016/07/12 15:10:45, mmenke ...
4 years, 5 months ago (2016-07-13 12:04:57 UTC) #107
mmenke
Not a full pass, but I'm pretty happy with the design now. I'd love it ...
4 years, 5 months ago (2016-07-14 21:23:05 UTC) #108
yhirano
https://codereview.chromium.org/1970693002/diff/1620001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1620001/content/browser/loader/mojo_async_resource_handler.cc#newcode75 content/browser/loader/mojo_async_resource_handler.cc:75: class MojoAsyncResourceHandler::WriterIOBuffer final On 2016/07/14 21:23:04, mmenke wrote: > ...
4 years, 5 months ago (2016-07-15 11:47:55 UTC) #114
mmenke
https://codereview.chromium.org/1970693002/diff/1620001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1620001/content/browser/loader/mojo_async_resource_handler.cc#newcode75 content/browser/loader/mojo_async_resource_handler.cc:75: class MojoAsyncResourceHandler::WriterIOBuffer final On 2016/07/15 11:47:55, yhirano wrote: > ...
4 years, 5 months ago (2016-07-15 14:54:07 UTC) #117
yhirano
https://codereview.chromium.org/1970693002/diff/1620001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1620001/content/browser/loader/mojo_async_resource_handler.cc#newcode151 content/browser/loader/mojo_async_resource_handler.cc:151: bool* defer) { On 2016/07/14 21:23:04, mmenke wrote: > ...
4 years, 5 months ago (2016-07-19 09:42:47 UTC) #120
mmenke
https://codereview.chromium.org/1970693002/diff/1620001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1620001/content/browser/loader/mojo_async_resource_handler.cc#newcode168 content/browser/loader/mojo_async_resource_handler.cc:168: options.capacity_num_bytes = g_max_allocation_size; On 2016/07/19 09:42:47, yhirano wrote: > ...
4 years, 5 months ago (2016-07-19 15:50:28 UTC) #123
mmenke
I still need to look at tests (Which I'll get to tomorrow), and hope I ...
4 years, 5 months ago (2016-07-19 20:50:27 UTC) #124
mmenke
https://codereview.chromium.org/1970693002/diff/1680001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1680001/content/browser/loader/mojo_async_resource_handler.cc#newcode220 content/browser/loader/mojo_async_resource_handler.cc:220: if (*defer) { BUG (Erm...Or something?): It turns out ...
4 years, 5 months ago (2016-07-19 21:58:52 UTC) #125
yhirano
https://codereview.chromium.org/1970693002/diff/1620001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1620001/content/browser/loader/mojo_async_resource_handler.cc#newcode168 content/browser/loader/mojo_async_resource_handler.cc:168: options.capacity_num_bytes = g_max_allocation_size; On 2016/07/19 20:50:26, mmenke wrote: > ...
4 years, 5 months ago (2016-07-20 13:38:36 UTC) #132
mmenke
https://codereview.chromium.org/1970693002/diff/1680001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1680001/content/browser/loader/mojo_async_resource_handler.cc#newcode220 content/browser/loader/mojo_async_resource_handler.cc:220: if (*defer) { On 2016/07/20 13:38:36, yhirano wrote: > ...
4 years, 5 months ago (2016-07-20 14:58:37 UTC) #133
mmenke
https://codereview.chromium.org/1970693002/diff/1720001/content/browser/loader/mojo_async_resource_handler_test_util.cc File content/browser/loader/mojo_async_resource_handler_test_util.cc (right): https://codereview.chromium.org/1970693002/diff/1720001/content/browser/loader/mojo_async_resource_handler_test_util.cc#newcode37 content/browser/loader/mojo_async_resource_handler_test_util.cc:37: response_body_ = mojo::ScopedDataPipeConsumerHandle(); I think ".reset()" makes it much ...
4 years, 5 months ago (2016-07-20 19:08:43 UTC) #134
yhirano
https://codereview.chromium.org/1970693002/diff/1680001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1680001/content/browser/loader/mojo_async_resource_handler.cc#newcode220 content/browser/loader/mojo_async_resource_handler.cc:220: if (*defer) { On 2016/07/20 14:58:37, mmenke wrote: > ...
4 years, 5 months ago (2016-07-21 14:50:22 UTC) #143
mmenke
Sorry for the delay, gotten bogged down a bit in this and Camille's CLs. I'm ...
4 years, 5 months ago (2016-07-25 20:34:51 UTC) #148
mmenke
https://codereview.chromium.org/1970693002/diff/1720001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1720001/content/browser/loader/mojo_async_resource_handler.cc#newcode284 content/browser/loader/mojo_async_resource_handler.cc:284: DCHECK(status.status() != net::URLRequestStatus::IO_PENDING); DCHECK_NE https://codereview.chromium.org/1970693002/diff/1720001/content/browser/loader/mojo_async_resource_handler_unittest.cc File content/browser/loader/mojo_async_resource_handler_unittest.cc (right): https://codereview.chromium.org/1970693002/diff/1720001/content/browser/loader/mojo_async_resource_handler_unittest.cc#newcode314 ...
4 years, 5 months ago (2016-07-25 22:03:54 UTC) #149
yhirano
https://codereview.chromium.org/1970693002/diff/1780001/content/browser/loader/mojo_async_resource_handler.h File content/browser/loader/mojo_async_resource_handler.h (right): https://codereview.chromium.org/1970693002/diff/1780001/content/browser/loader/mojo_async_resource_handler.h#newcode71 content/browser/loader/mojo_async_resource_handler.h:71: ResourceRequestInfoImpl* GetRequestInfoForTesting() { On 2016/07/25 22:03:53, mmenke wrote: > ...
4 years, 4 months ago (2016-07-27 16:13:29 UTC) #164
mmenke
Response to comments. Plan to do a pass today - hoping we can finally finish ...
4 years, 4 months ago (2016-07-27 16:49:36 UTC) #165
mmenke
https://codereview.chromium.org/1970693002/diff/1780001/content/browser/loader/mojo_async_resource_handler_unittest.cc File content/browser/loader/mojo_async_resource_handler_unittest.cc (right): https://codereview.chromium.org/1970693002/diff/1780001/content/browser/loader/mojo_async_resource_handler_unittest.cc#newcode615 content/browser/loader/mojo_async_resource_handler_unittest.cc:615: TEST_F(MojoAsyncResourceHandlerTest, ResponseErrorDuringBodyTransmission) { On 2016/07/27 16:13:28, yhirano wrote: > ...
4 years, 4 months ago (2016-07-27 21:38:21 UTC) #166
yhirano
https://codereview.chromium.org/1970693002/diff/1780001/content/browser/loader/mojo_async_resource_handler_unittest.cc File content/browser/loader/mojo_async_resource_handler_unittest.cc (right): https://codereview.chromium.org/1970693002/diff/1780001/content/browser/loader/mojo_async_resource_handler_unittest.cc#newcode381 content/browser/loader/mojo_async_resource_handler_unittest.cc:381: EXPECT_TRUE(handler_->OnWillRead(&buffer, &buf_size, -1)); On 2016/07/27 16:49:36, mmenke wrote: > ...
4 years, 4 months ago (2016-07-28 14:50:46 UTC) #173
mmenke
Sorry for not doing a second pass this week. Between this CL and clamy's, just ...
4 years, 4 months ago (2016-07-29 20:01:15 UTC) #176
mmenke
I think this looks good enough to land, modulo the mime sniffer issue with not ...
4 years, 4 months ago (2016-08-01 18:23:17 UTC) #177
mmenke
On 2016/08/01 18:23:17, mmenke wrote: > I think this looks good enough to land, modulo ...
4 years, 4 months ago (2016-08-01 18:24:46 UTC) #178
yhirano
Thank you very much for the thorough review. I would go with the last option.
4 years, 4 months ago (2016-08-02 08:30:19 UTC) #185
yhirano
+tsepez@ for .mojom files.
4 years, 4 months ago (2016-08-02 08:31:47 UTC) #187
yhirano
jam@ or kinuko@, are you happy with the change as a content/ owner? Sorry the ...
4 years, 4 months ago (2016-08-02 08:33:14 UTC) #188
Tom Sepez
mojom lgtm
4 years, 4 months ago (2016-08-02 18:03:39 UTC) #191
kinuko
Sending some nit-pick comments, but overall looks pretty good to me. Let me take another ...
4 years, 4 months ago (2016-08-03 18:20:07 UTC) #192
mmenke
https://codereview.chromium.org/1970693002/diff/1940001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1940001/content/browser/loader/mojo_async_resource_handler.cc#newcode190 content/browser/loader/mojo_async_resource_handler.cc:190: is_using_io_buffer_not_from_writer_ = true; On 2016/08/03 18:20:07, kinuko wrote: > ...
4 years, 4 months ago (2016-08-03 18:25:57 UTC) #193
yhirano
https://codereview.chromium.org/1970693002/diff/1940001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1940001/content/browser/loader/mojo_async_resource_handler.cc#newcode32 content/browser/loader/mojo_async_resource_handler.cc:32: int g_allocation_size = MojoAsyncResourceHandler::kDefaultAllocationSize; On 2016/08/03 18:20:07, kinuko wrote: ...
4 years, 4 months ago (2016-08-04 12:50:51 UTC) #198
kinuko
Remaining comments (+ some questions), mostly minor. Thanks for working through this! https://codereview.chromium.org/1970693002/diff/1940001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc ...
4 years, 4 months ago (2016-08-04 16:07:03 UTC) #199
mmenke
https://codereview.chromium.org/1970693002/diff/1940001/content/browser/loader/mojo_async_resource_handler_unittest.cc File content/browser/loader/mojo_async_resource_handler_unittest.cc (right): https://codereview.chromium.org/1970693002/diff/1940001/content/browser/loader/mojo_async_resource_handler_unittest.cc#newcode501 content/browser/loader/mojo_async_resource_handler_unittest.cc:501: base::RunLoop().RunUntilIdle(); On 2016/08/04 16:07:02, kinuko wrote: > We call ...
4 years, 4 months ago (2016-08-04 16:12:44 UTC) #200
kinuko
https://codereview.chromium.org/1970693002/diff/1940001/content/browser/loader/mojo_async_resource_handler_unittest.cc File content/browser/loader/mojo_async_resource_handler_unittest.cc (right): https://codereview.chromium.org/1970693002/diff/1940001/content/browser/loader/mojo_async_resource_handler_unittest.cc#newcode501 content/browser/loader/mojo_async_resource_handler_unittest.cc:501: base::RunLoop().RunUntilIdle(); On 2016/08/04 16:12:44, mmenke wrote: > On 2016/08/04 ...
4 years, 4 months ago (2016-08-04 16:57:09 UTC) #201
yhirano
https://codereview.chromium.org/1970693002/diff/1940001/content/browser/loader/mojo_async_resource_handler.cc File content/browser/loader/mojo_async_resource_handler.cc (right): https://codereview.chromium.org/1970693002/diff/1940001/content/browser/loader/mojo_async_resource_handler.cc#newcode188 content/browser/loader/mojo_async_resource_handler.cc:188: } On 2016/08/04 16:07:02, kinuko wrote: > nit: I ...
4 years, 4 months ago (2016-08-05 12:21:40 UTC) #216
kinuko
lgtm! https://codereview.chromium.org/1970693002/diff/1940001/content/child/url_response_body_consumer.h File content/child/url_response_body_consumer.h (right): https://codereview.chromium.org/1970693002/diff/1940001/content/child/url_response_body_consumer.h#newcode37 content/child/url_response_body_consumer.h:37: // 1) The completion status is set by ...
4 years, 4 months ago (2016-08-08 15:47:25 UTC) #227
yhirano
https://codereview.chromium.org/1970693002/diff/1940001/content/child/url_response_body_consumer.h File content/child/url_response_body_consumer.h (right): https://codereview.chromium.org/1970693002/diff/1940001/content/child/url_response_body_consumer.h#newcode37 content/child/url_response_body_consumer.h:37: // 1) The completion status is set by this ...
4 years, 4 months ago (2016-08-09 06:35:48 UTC) #240
yhirano
Thank you very much, all reviewers! URLLoaderFactoryHolder is no longer needed as we have InterfaceRegistry ...
4 years, 4 months ago (2016-08-09 09:13:36 UTC) #249
kinuko
still lgtm https://codereview.chromium.org/1970693002/diff/2260001/content/browser/renderer_host/render_process_host_impl.cc File content/browser/renderer_host/render_process_host_impl.cc (right): https://codereview.chromium.org/1970693002/diff/2260001/content/browser/renderer_host/render_process_host_impl.cc#newcode1173 content/browser/renderer_host/render_process_host_impl.cc:1173: base::Bind(&URLLoaderFactoryImpl::Create, resource_message_filter_)); Cool :)
4 years, 4 months ago (2016-08-09 15:44:28 UTC) #256
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/1970693002/2300001
4 years, 4 months ago (2016-08-10 03:21:24 UTC) #270
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/234593)
4 years, 4 months ago (2016-08-10 03:32:44 UTC) #272
yhirano
yzshen@, are you OK with my change at mojo/public/tools/bindings/chromium_bindings_configuration.gni?
4 years, 4 months ago (2016-08-10 03:45:50 UTC) #273
yzshen1
On 2016/08/10 03:45:50, yhirano (slow) wrote: > yzshen@, are you OK with my change at ...
4 years, 4 months ago (2016-08-10 15:39:44 UTC) #274
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/1970693002/2300001
4 years, 4 months ago (2016-08-10 16:10:25 UTC) #276
commit-bot: I haz the power
Failed to apply patch for content/child/web_url_loader_impl.cc: While running git apply --index -3 -p1; error: patch ...
4 years, 4 months ago (2016-08-10 18:27:04 UTC) #278
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/1970693002/2440001
4 years, 4 months ago (2016-08-12 23:29:34 UTC) #315
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/237531)
4 years, 4 months ago (2016-08-12 23:38:41 UTC) #317
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/1970693002/2460001
4 years, 4 months ago (2016-08-13 12:09:40 UTC) #324
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/51689)
4 years, 4 months ago (2016-08-13 12:16:56 UTC) #326
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/1970693002/2460001
4 years, 4 months ago (2016-08-13 12:43:01 UTC) #328
commit-bot: I haz the power
Committed patchset #90 (id:2460001)
4 years, 4 months ago (2016-08-13 12:50:34 UTC) #330
commit-bot: I haz the power
4 years, 4 months ago (2016-08-13 12:52:10 UTC) #332
Message was sent while issue was closed.
Patchset 90 (id:??) landed as
https://crrev.com/72f62279cd7c4370dd7e068b900d9359a7e9589c
Cr-Commit-Position: refs/heads/master@{#411894}

Powered by Google App Engine
This is Rietveld 408576698