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

Issue 11896113: Add chrome-search: access from Instant overlay (Closed)

Created:
7 years, 11 months ago by dhollowa
Modified:
7 years, 9 months ago
CC:
chromium-reviews, joi+watch-content_chromium.org, melevin, sreeram, gideonwald, dominich, Aaron Boodman, David Black, samarth+watch_chromium.org, chromium-apps-reviews_chromium.org, darin-cc_chromium.org, Jered, sky, Shishir, mkosiba (inactive)
Visibility:
Public.

Description

Add chrome-search: access from Instant overlay Enables the Instant NTP page access to: chrome-search://theme/*, chrome-search://favicon/*, and chrome-search://thumb/*. This CL has a number of aspects to make the installed theme background image available to the Instant overlay: 1. Utilizes the new chrome-search: scheme that is accessible only to the Instant overlay's render process. This is enforced on the renderer side by WebKit::WebSecurityPolicy facilities. This is enforced on the browser side by the InstantIOContext::ShouldServiceRequest and URLDataSource::ShouldServiceRequest facilities. 2. Whitelists the chrome-search://theme origin to be made available to the specific Instant overlay's origin/url. 3. Backend CSS that sets the appropriate background image that resides in the chrome-search://theme origin. 4. A small refactoring of the Instant tests to support mix-in usage of InstantTestBase. BUG=172408, 134937 TEST=InstantPolicyTest.SearchSchemePolicy R=sreeram@chromium.org, creis@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=186347 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=186680

Patch Set 1 #

Patch Set 2 : Test additions. #

Patch Set 3 : Win compile. #

Patch Set 4 : Comments and nits. #

Patch Set 5 : Rebase for URLDataManagerBackend rename. #

Total comments: 9

Patch Set 6 : Address Sreeram's comments. #

Total comments: 8

Patch Set 7 : Sreeram's comments #

Total comments: 6

Patch Set 8 : Sort #

Total comments: 2

Patch Set 9 : Rebase #

Patch Set 10 : Trying out chrome_search_policy* direction. #

Patch Set 11 : Creates chrome_search_protocol* to serve chrome-search: #

Patch Set 12 : GetAdditionalWebUISchemes #

Total comments: 19

Patch Set 13 : Args to map #

Patch Set 14 : Address Charlie's comments. #

Total comments: 2

Patch Set 15 : content shell compile glitch #

Patch Set 16 : Remove developer_protocol_handler #

Patch Set 17 : Test flakes. #

Patch Set 18 : Android compile glitches #

Total comments: 2

Patch Set 19 : Adds InstantExtendedTest.NoWebUIBindings* tests #

Patch Set 20 : include nit #

Total comments: 12

Patch Set 21 : Address Charlie's comments. #

Total comments: 20

Patch Set 22 : Address Sreeram's comments. #

Patch Set 23 : Doc for URLDataSource #

Patch Set 24 : Rebase #

Patch Set 25 : Better rebase, Mac tests. #

Patch Set 26 : Missed bit of URLDataManagerBackend #

Patch Set 27 : Rebase #

Patch Set 28 : Flake #

Patch Set 29 : InstantIOContext lifetime #

Total comments: 4

Patch Set 30 : Rebase #

Patch Set 31 : Yet another rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1047 lines, -1347 lines) Patch
M android_webview/browser/aw_browser_context.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +3 lines, -20 lines 0 comments Download
M android_webview/browser/aw_browser_context.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +3 lines, -24 lines 0 comments Download
M android_webview/browser/aw_content_browser_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +2 lines, -20 lines 0 comments Download
M android_webview/browser/aw_content_browser_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +4 lines, -28 lines 0 comments Download
M android_webview/browser/net/aw_url_request_context_getter.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 3 chunks +3 lines, -20 lines 0 comments Download
M android_webview/browser/net/aw_url_request_context_getter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +9 lines, -26 lines 0 comments Download
M chrome/browser/browser_process_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 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/chrome_content_browser_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +3 lines, -20 lines 0 comments Download
M chrome/browser/chrome_content_browser_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 2 chunks +12 lines, -32 lines 0 comments Download
M chrome/browser/instant/instant_browsertest.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 32 chunks +44 lines, -49 lines 0 comments Download
M chrome/browser/instant/instant_controller.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 2 chunks +3 lines, -0 lines 0 comments Download
M chrome/browser/instant/instant_extended_browsertest.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 27 chunks +234 lines, -66 lines 0 comments Download
A chrome/browser/instant/instant_io_context.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 1 chunk +71 lines, -0 lines 0 comments Download
A chrome/browser/instant/instant_io_context.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 1 chunk +90 lines, -0 lines 0 comments Download
M chrome/browser/instant/instant_page.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 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/instant/instant_page.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 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/instant/instant_service.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 2 chunks +9 lines, -1 line 0 comments Download
M chrome/browser/instant/instant_service.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 3 chunks +48 lines, -1 line 0 comments Download
M chrome/browser/instant/instant_service_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/instant/instant_test_utils.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 4 chunks +38 lines, -7 lines 0 comments Download
M chrome/browser/instant/instant_test_utils.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 5 chunks +45 lines, -5 lines 0 comments Download
M chrome/browser/net/chrome_url_request_context.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 4 chunks +4 lines, -40 lines 0 comments Download
M chrome/browser/net/chrome_url_request_context.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 8 chunks +26 lines, -122 lines 0 comments Download
M chrome/browser/profiles/off_the_record_profile_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +3 lines, -20 lines 0 comments Download
M chrome/browser/profiles/off_the_record_profile_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 2 chunks +4 lines, -26 lines 0 comments Download
M chrome/browser/profiles/off_the_record_profile_io_data.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 5 chunks +5 lines, -50 lines 0 comments Download
M chrome/browser/profiles/off_the_record_profile_io_data.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 9 chunks +10 lines, -92 lines 0 comments Download
M chrome/browser/profiles/profile.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +3 lines, -20 lines 0 comments Download
M chrome/browser/profiles/profile_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 2 chunks +3 lines, -20 lines 0 comments Download
M chrome/browser/profiles/profile_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 2 chunks +4 lines, -28 lines 0 comments Download
M chrome/browser/profiles/profile_impl_io_data.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +5 lines, -50 lines 0 comments Download
M chrome/browser/profiles/profile_impl_io_data.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 9 chunks +11 lines, -92 lines 0 comments Download
M chrome/browser/profiles/profile_io_data.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 6 chunks +13 lines, -51 lines 0 comments Download
M chrome/browser/profiles/profile_io_data.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 7 chunks +21 lines, -30 lines 0 comments Download
M chrome/browser/ui/sync/one_click_signin_helper_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 3 chunks +3 lines, -30 lines 0 comments Download
M chrome/browser/ui/webui/favicon_source.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/favicon_source.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +8 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/ntp/thumbnail_source.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/ntp/thumbnail_source.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +9 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/theme_source.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/theme_source.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +8 lines, -0 lines 0 comments Download
M chrome/chrome_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 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/common/chrome_content_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +1 line, -0 lines 0 comments Download
M chrome/common/render_messages.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 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/common/url_constants.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/renderer/chrome_content_renderer_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 2 chunks +13 lines, -7 lines 0 comments Download
M chrome/renderer/searchbox/searchbox.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 1 chunk +1 line, -0 lines 0 comments Download
M chrome/renderer/searchbox/searchbox.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 4 chunks +30 lines, -6 lines 0 comments Download
M chrome/renderer/searchbox/searchbox_extension.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 1 chunk +2 lines, -2 lines 0 comments Download
M chrome/test/base/testing_profile.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +2 lines, -20 lines 0 comments Download
M chrome/test/base/testing_profile.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 2 chunks +2 lines, -20 lines 0 comments Download
M content/browser/storage_partition_impl_map.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 4 chunks +33 lines, -83 lines 0 comments Download
M content/browser/webui/url_data_manager_backend.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 3 chunks +9 lines, -2 lines 0 comments Download
M content/browser/webui/url_data_manager_backend.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 9 chunks +81 lines, -26 lines 0 comments Download
M content/public/browser/content_browser_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 4 chunks +16 lines, -20 lines 0 comments Download
M content/public/browser/content_browser_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +6 lines, -20 lines 0 comments Download
M content/public/browser/url_data_source.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +15 lines, -4 lines 0 comments Download
M content/public/browser/url_data_source.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +9 lines, -0 lines 0 comments Download
M content/shell/shell_browser_context.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +3 lines, -20 lines 0 comments Download
M content/shell/shell_browser_context.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +3 lines, -25 lines 0 comments Download
M content/shell/shell_content_browser_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +2 lines, -20 lines 0 comments Download
M content/shell/shell_content_browser_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +4 lines, -28 lines 0 comments Download
M content/shell/shell_url_request_context_getter.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +3 lines, -20 lines 0 comments Download
M content/shell/shell_url_request_context_getter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +23 lines, -33 lines 0 comments Download

Messages

Total messages: 81 (0 generated)
dhollowa
sreeram -> Instant creis -> browser and webkit policy changes jschuh -> OWNERS chrome/common/render_messages.h joi ...
7 years, 10 months ago (2013-01-28 17:18:42 UTC) #1
sreeram
https://codereview.chromium.org/11896113/diff/11004/chrome/browser/instant/instant_loader.cc File chrome/browser/instant/instant_loader.cc (right): https://codereview.chromium.org/11896113/diff/11004/chrome/browser/instant/instant_loader.cc#newcode214 chrome/browser/instant/instant_loader.cc:214: GrantAccessToChromeSearch(); Note to Shishir: This also needs to be ...
7 years, 10 months ago (2013-01-29 16:04:34 UTC) #2
dhollowa
https://codereview.chromium.org/11896113/diff/11004/chrome/browser/instant/instant_loader.cc File chrome/browser/instant/instant_loader.cc (right): https://codereview.chromium.org/11896113/diff/11004/chrome/browser/instant/instant_loader.cc#newcode431 chrome/browser/instant/instant_loader.cc:431: client_.SendGrantAccessFromOrigin(instant_url_); On 2013/01/29 16:04:34, sreeram wrote: > Hmm... What ...
7 years, 10 months ago (2013-01-29 21:51:05 UTC) #3
Charlie Reis
I'm in MTV and busy with meetings/talks at the moment, but I'll try to take ...
7 years, 10 months ago (2013-01-29 22:03:36 UTC) #4
dhollowa
On 2013/01/29 21:51:05, dhollowa wrote: > https://codereview.chromium.org/11896113/diff/11004/chrome/browser/instant/instant_loader.cc > File chrome/browser/instant/instant_loader.cc (right): > > https://codereview.chromium.org/11896113/diff/11004/chrome/browser/instant/instant_loader.cc#newcode431 > ...
7 years, 10 months ago (2013-01-29 22:15:31 UTC) #5
sreeram
https://codereview.chromium.org/11896113/diff/4009/chrome/browser/instant/instant_browsertest.cc File chrome/browser/instant/instant_browsertest.cc (right): https://codereview.chromium.org/11896113/diff/4009/chrome/browser/instant/instant_browsertest.cc#newcode63 chrome/browser/instant/instant_browsertest.cc:63: // Instant overly. This is a subclass of |ExtensionBrowserTest| ...
7 years, 10 months ago (2013-01-30 18:24:53 UTC) #6
dhollowa
https://codereview.chromium.org/11896113/diff/4009/chrome/browser/instant/instant_browsertest.cc File chrome/browser/instant/instant_browsertest.cc (right): https://codereview.chromium.org/11896113/diff/4009/chrome/browser/instant/instant_browsertest.cc#newcode63 chrome/browser/instant/instant_browsertest.cc:63: // Instant overly. This is a subclass of |ExtensionBrowserTest| ...
7 years, 10 months ago (2013-01-30 18:56:41 UTC) #7
sreeram
lgtm https://codereview.chromium.org/11896113/diff/11005/chrome/browser/instant/instant_test_utils.h File chrome/browser/instant/instant_test_utils.h (right): https://codereview.chromium.org/11896113/diff/11005/chrome/browser/instant/instant_test_utils.h#newcode13 chrome/browser/instant/instant_test_utils.h:13: #include "base/run_loop.h" Please sort. https://codereview.chromium.org/11896113/diff/11005/chrome/browser/instant/instant_test_utils.h#newcode14 chrome/browser/instant/instant_test_utils.h:14: #include "chrome/browser/instant/instant_controller.h" ...
7 years, 10 months ago (2013-01-30 19:09:46 UTC) #8
dhollowa
https://codereview.chromium.org/11896113/diff/11005/chrome/browser/instant/instant_test_utils.h File chrome/browser/instant/instant_test_utils.h (right): https://codereview.chromium.org/11896113/diff/11005/chrome/browser/instant/instant_test_utils.h#newcode13 chrome/browser/instant/instant_test_utils.h:13: #include "base/run_loop.h" On 2013/01/30 19:09:46, sreeram wrote: > Please ...
7 years, 10 months ago (2013-01-30 19:31:21 UTC) #9
dhollowa
jschuh -> OWNERS chrome/common/render_messages.h joi -> OWNERS content/public/ sky -> OWNERS chrome/browser/... <misc>
7 years, 10 months ago (2013-01-30 19:43:27 UTC) #10
jschuh
I'll probably just end up rubberstamping Charlie's review after he okays it, because he has ...
7 years, 10 months ago (2013-01-30 21:07:12 UTC) #11
sky
On Wed, Jan 30, 2013 at 11:43 AM, <dhollowa@chromium.org> wrote: > jschuh -> OWNERS chrome/common/render_messages.h ...
7 years, 10 months ago (2013-01-30 23:05:57 UTC) #12
dhollowa
On 2013/01/30 23:05:57, sky wrote: > On Wed, Jan 30, 2013 at 11:43 AM, <mailto:dhollowa@chromium.org> ...
7 years, 10 months ago (2013-01-30 23:41:03 UTC) #13
sreeram
https://codereview.chromium.org/11896113/diff/8006/chrome/browser/instant/instant_browsertest.cc File chrome/browser/instant/instant_browsertest.cc (right): https://codereview.chromium.org/11896113/diff/8006/chrome/browser/instant/instant_browsertest.cc#newcode1094 chrome/browser/instant/instant_browsertest.cc:1094: chrome::GetActiveWebContents(browser())->GetRenderViewHost(); Heads up: @avi removed this in http://crrev.com/179466 yesterday.
7 years, 10 months ago (2013-01-30 23:57:08 UTC) #14
dhollowa
https://codereview.chromium.org/11896113/diff/8006/chrome/browser/instant/instant_browsertest.cc File chrome/browser/instant/instant_browsertest.cc (right): https://codereview.chromium.org/11896113/diff/8006/chrome/browser/instant/instant_browsertest.cc#newcode1094 chrome/browser/instant/instant_browsertest.cc:1094: chrome::GetActiveWebContents(browser())->GetRenderViewHost(); On 2013/01/30 23:57:08, sreeram wrote: > Heads up: ...
7 years, 10 months ago (2013-01-31 00:51:56 UTC) #15
Jói
+jam It feels a bit wrong to have content know about Instant in this way. ...
7 years, 10 months ago (2013-01-31 11:37:51 UTC) #16
dhollowa
On 2013/01/31 11:37:51, Jói wrote: > +jam > > It feels a bit wrong to ...
7 years, 10 months ago (2013-01-31 16:31:29 UTC) #17
Jói
Thanks David. With the different naming and your explanation it sounds more reasonable. I think ...
7 years, 10 months ago (2013-01-31 17:06:28 UTC) #18
jam
I agree that this stuff doesn't belong in content. renaming chrome-search to chrome-foo would just ...
7 years, 10 months ago (2013-01-31 17:46:52 UTC) #19
dhollowa
Would you be ok with me landing the chrome-search: addition, as it stands, in the ...
7 years, 10 months ago (2013-01-31 18:50:47 UTC) #20
jam
On 2013/01/31 18:50:47, dhollowa wrote: > Would you be ok with me landing the chrome-search: ...
7 years, 10 months ago (2013-01-31 19:02:12 UTC) #21
dhollowa
On 2013/01/31 19:02:12, jam wrote: > > no, I'd really prefer not. future cleanup is ...
7 years, 10 months ago (2013-01-31 19:53:08 UTC) #22
jam
On Thu, Jan 31, 2013 at 11:53 AM, <dhollowa@chromium.org> wrote: > On 2013/01/31 19:02:12, jam ...
7 years, 10 months ago (2013-01-31 20:03:47 UTC) #23
jam
On Thu, Jan 31, 2013 at 12:03 PM, John Abd-El-Malek <jam@chromium.org>wrote: > > > On ...
7 years, 10 months ago (2013-01-31 20:04:45 UTC) #24
dhollowa
On 2013/01/31 20:04:45, jam wrote: > On Thu, Jan 31, 2013 at 12:03 PM, John ...
7 years, 10 months ago (2013-01-31 20:44:06 UTC) #25
dhollowa
John, I took a look at how I might move my chrome-search: solution on the ...
7 years, 10 months ago (2013-02-01 00:52:44 UTC) #26
jam
On 2013/02/01 00:52:44, dhollowa wrote: > John, I took a look at how I might ...
7 years, 10 months ago (2013-02-01 03:15:36 UTC) #27
dhollowa
On 2013/02/01 03:15:36, jam wrote: > On 2013/02/01 00:52:44, dhollowa wrote: > > John, I ...
7 years, 10 months ago (2013-02-06 01:01:49 UTC) #28
dhollowa
Charlie, John, Sreeram. I've uploaded changes that move the chrome-search: scheme serving and policy check ...
7 years, 10 months ago (2013-02-15 01:34:45 UTC) #29
jam
On 2013/02/15 01:34:45, dhollowa wrote: > Charlie, John, Sreeram. I've uploaded changes that move the ...
7 years, 10 months ago (2013-02-15 01:49:56 UTC) #30
dhollowa
On 2013/02/15 01:49:56, jam wrote: > On 2013/02/15 01:34:45, dhollowa wrote: > > Charlie, John, ...
7 years, 10 months ago (2013-02-15 19:55:50 UTC) #31
jam
On 2013/02/15 19:55:50, dhollowa wrote: > On 2013/02/15 01:49:56, jam wrote: > > On 2013/02/15 ...
7 years, 10 months ago (2013-02-15 21:00:16 UTC) #32
dhollowa
On 2013/02/15 21:00:16, jam wrote: > On 2013/02/15 19:55:50, dhollowa wrote: > > On 2013/02/15 ...
7 years, 10 months ago (2013-02-15 21:33:14 UTC) #33
dhollowa
On 2013/02/15 21:33:14, dhollowa wrote: > On 2013/02/15 21:00:16, jam wrote: > > On 2013/02/15 ...
7 years, 10 months ago (2013-02-19 21:56:16 UTC) #34
dhollowa
jam -> This now implements the content changes we discussed. creis -> The new instant_io_context.h/cc ...
7 years, 10 months ago (2013-02-26 04:27:59 UTC) #35
jam
Thanks David, this looks much nicer to me. I skipped the instant files. The rest ...
7 years, 9 months ago (2013-02-27 01:11:13 UTC) #36
Charlie Reis
Just a high level question or two at the moment, since I'm not sure I ...
7 years, 9 months ago (2013-02-27 22:50:22 UTC) #37
jam
On 2013/02/27 22:50:22, creis wrote: > Just a high level question or two at the ...
7 years, 9 months ago (2013-02-27 22:59:54 UTC) #38
Charlie Reis
On 2013/02/27 22:59:54, jam wrote: > On 2013/02/27 22:50:22, creis wrote: > > Just a ...
7 years, 9 months ago (2013-02-27 23:02:43 UTC) #39
dhollowa
https://codereview.chromium.org/11896113/diff/44001/content/browser/webui/url_data_manager_backend.cc File content/browser/webui/url_data_manager_backend.cc (right): https://codereview.chromium.org/11896113/diff/44001/content/browser/webui/url_data_manager_backend.cc#newcode26 content/browser/webui/url_data_manager_backend.cc:26: #include "content/public/common/content_client.h" On 2013/02/27 01:11:13, jam wrote: > nit: ...
7 years, 9 months ago (2013-02-28 00:00:37 UTC) #40
dhollowa
On 2013/02/27 22:59:54, jam wrote: > On 2013/02/27 22:50:22, creis wrote: >[...] >Thanks, John. If ...
7 years, 9 months ago (2013-02-28 00:15:22 UTC) #41
jam
https://codereview.chromium.org/11896113/diff/44001/content/public/browser/content_browser_client.h File content/public/browser/content_browser_client.h (right): https://codereview.chromium.org/11896113/diff/44001/content/public/browser/content_browser_client.h#newcode86 content/public/browser/content_browser_client.h:86: typedef std::map< On 2013/02/28 00:00:37, dhollowa wrote: > On ...
7 years, 9 months ago (2013-02-28 02:21:20 UTC) #42
dhollowa
https://codereview.chromium.org/11896113/diff/44001/content/public/browser/content_browser_client.h File content/public/browser/content_browser_client.h (right): https://codereview.chromium.org/11896113/diff/44001/content/public/browser/content_browser_client.h#newcode164 content/public/browser/content_browser_client.h:164: AdditionalWebUIHandlers* additional_webui_handlers, On 2013/02/28 02:21:21, jam wrote: > On ...
7 years, 9 months ago (2013-02-28 18:21:11 UTC) #43
Charlie Reis
On 2013/02/28 00:15:22, dhollowa wrote: > On 2013/02/27 22:59:54, jam wrote: > > On 2013/02/27 ...
7 years, 9 months ago (2013-02-28 18:47:12 UTC) #44
jschuh
On 2013/02/28 18:47:12, creis wrote: > Ok, but that's not what I meant by being ...
7 years, 9 months ago (2013-02-28 19:48:34 UTC) #45
dhollowa
On 2013/02/28 19:48:34, Justin Schuh wrote: > On 2013/02/28 18:47:12, creis wrote: > > Ok, ...
7 years, 9 months ago (2013-02-28 19:50:06 UTC) #46
jam
lgtm, thank you for going through all the different paths until we reached this. (i ...
7 years, 9 months ago (2013-02-28 21:41:25 UTC) #47
jam
https://codereview.chromium.org/11896113/diff/76007/chrome/browser/profiles/off_the_record_profile_io_data.cc File chrome/browser/profiles/off_the_record_profile_io_data.cc (right): https://codereview.chromium.org/11896113/diff/76007/chrome/browser/profiles/off_the_record_profile_io_data.cc#newcode28 chrome/browser/profiles/off_the_record_profile_io_data.cc:28: #include "content/public/browser/content_browser_client.h" nit: not needed
7 years, 9 months ago (2013-02-28 21:43:33 UTC) #48
dhollowa
On 2013/02/28 19:50:06, dhollowa wrote: > On 2013/02/28 19:48:34, Justin Schuh wrote: > > On ...
7 years, 9 months ago (2013-02-28 21:50:45 UTC) #49
dhollowa
Thanks for the crash course in content layering John. Appreciate the hand-holding. :-) https://codereview.chromium.org/11896113/diff/76007/chrome/browser/profiles/off_the_record_profile_io_data.cc File ...
7 years, 9 months ago (2013-02-28 21:55:24 UTC) #50
dhollowa
+benm OWNERS android_webview/
7 years, 9 months ago (2013-02-28 23:15:52 UTC) #51
benm (inactive)
android_webview lgtm
7 years, 9 months ago (2013-03-01 11:23:23 UTC) #52
Charlie Reis
Can you update the CL description? It still talks about some stale things like using ...
7 years, 9 months ago (2013-03-02 04:41:09 UTC) #53
dhollowa
https://codereview.chromium.org/11896113/diff/75137/android_webview/browser/net/aw_url_request_context_getter.cc File android_webview/browser/net/aw_url_request_context_getter.cc (left): https://codereview.chromium.org/11896113/diff/75137/android_webview/browser/net/aw_url_request_context_getter.cc#oldcode129 android_webview/browser/net/aw_url_request_context_getter.cc:129: developer_protocol_handler_.Pass())); On 2013/03/02 04:41:09, creis wrote: > Was this ...
7 years, 9 months ago (2013-03-04 18:39:34 UTC) #54
sreeram
https://codereview.chromium.org/11896113/diff/75142/chrome/browser/instant/instant_io_context.cc File chrome/browser/instant/instant_io_context.cc (right): https://codereview.chromium.org/11896113/diff/75142/chrome/browser/instant/instant_io_context.cc#newcode16 chrome/browser/instant/instant_io_context.cc:16: const char kInstantIOContextKeyName[] = "instant_io_context"; In other UserData cases ...
7 years, 9 months ago (2013-03-04 19:14:14 UTC) #55
Charlie Reis
https://codereview.chromium.org/11896113/diff/75142/content/public/browser/url_data_source.h File content/public/browser/url_data_source.h (right): https://codereview.chromium.org/11896113/diff/75142/content/public/browser/url_data_source.h#newcode105 content/public/browser/url_data_source.h:105: // implement fancier access control. This seems like an ...
7 years, 9 months ago (2013-03-04 19:43:27 UTC) #56
dhollowa
https://codereview.chromium.org/11896113/diff/75142/chrome/browser/instant/instant_io_context.cc File chrome/browser/instant/instant_io_context.cc (right): https://codereview.chromium.org/11896113/diff/75142/chrome/browser/instant/instant_io_context.cc#newcode16 chrome/browser/instant/instant_io_context.cc:16: const char kInstantIOContextKeyName[] = "instant_io_context"; On 2013/03/04 19:14:14, sreeram ...
7 years, 9 months ago (2013-03-04 19:53:50 UTC) #57
dhollowa
https://codereview.chromium.org/11896113/diff/75142/content/public/browser/url_data_source.h File content/public/browser/url_data_source.h (right): https://codereview.chromium.org/11896113/diff/75142/content/public/browser/url_data_source.h#newcode105 content/public/browser/url_data_source.h:105: // implement fancier access control. On 2013/03/04 19:43:27, creis ...
7 years, 9 months ago (2013-03-04 20:06:19 UTC) #58
Charlie Reis
https://codereview.chromium.org/11896113/diff/75142/content/public/browser/url_data_source.h File content/public/browser/url_data_source.h (right): https://codereview.chromium.org/11896113/diff/75142/content/public/browser/url_data_source.h#newcode105 content/public/browser/url_data_source.h:105: // implement fancier access control. On 2013/03/04 20:06:19, dhollowa ...
7 years, 9 months ago (2013-03-04 20:21:14 UTC) #59
sreeram
instant and searchbox lgtm
7 years, 9 months ago (2013-03-04 20:30:05 UTC) #60
dhollowa
https://codereview.chromium.org/11896113/diff/75142/content/public/browser/url_data_source.h File content/public/browser/url_data_source.h (right): https://codereview.chromium.org/11896113/diff/75142/content/public/browser/url_data_source.h#newcode105 content/public/browser/url_data_source.h:105: // implement fancier access control. On 2013/03/04 20:21:14, creis ...
7 years, 9 months ago (2013-03-04 21:02:06 UTC) #61
Charlie Reis
Thanks, I think that takes care of all my concerns. LGTM.
7 years, 9 months ago (2013-03-04 21:47:09 UTC) #62
jschuh
Rubberstamp based on @cries' lgtm.
7 years, 9 months ago (2013-03-04 21:55:41 UTC) #63
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dhollowa@chromium.org/11896113/78023
7 years, 9 months ago (2013-03-04 22:28:59 UTC) #64
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dhollowa@chromium.org/11896113/75219
7 years, 9 months ago (2013-03-05 00:30:43 UTC) #65
commit-bot: I haz the power
Retried try job too often on linux_chromeos for step(s) unit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_chromeos&number=89639
7 years, 9 months ago (2013-03-05 01:45:41 UTC) #66
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dhollowa@chromium.org/11896113/103001
7 years, 9 months ago (2013-03-05 19:11:34 UTC) #67
commit-bot: I haz the power
Step "update" is always a major failure. Look at the try server FAQ for more ...
7 years, 9 months ago (2013-03-05 19:20:55 UTC) #68
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dhollowa@chromium.org/11896113/107001
7 years, 9 months ago (2013-03-05 22:01:22 UTC) #69
commit-bot: I haz the power
Retried try job too often on mac_rel for step(s) interactive_ui_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=mac_rel&number=105471
7 years, 9 months ago (2013-03-05 23:14:38 UTC) #70
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dhollowa@chromium.org/11896113/134001
7 years, 9 months ago (2013-03-06 01:11:23 UTC) #71
commit-bot: I haz the power
Change committed as 186347
7 years, 9 months ago (2013-03-06 04:02:19 UTC) #72
dhollowa
Sreeram: I made changes to c/b/instant/instant_io_context.* & instant_service.* with respect to lifetime of the InstantIOContext. ...
7 years, 9 months ago (2013-03-07 01:26:35 UTC) #73
sreeram
lgtm https://codereview.chromium.org/11896113/diff/144001/chrome/browser/instant/instant_service.cc File chrome/browser/instant/instant_service.cc (right): https://codereview.chromium.org/11896113/diff/144001/chrome/browser/instant/instant_service.cc#newcode15 chrome/browser/instant/instant_service.cc:15: #include "content/public/browser/resource_context.h" Maybe no need for this include. ...
7 years, 9 months ago (2013-03-07 02:17:21 UTC) #74
dhollowa
https://codereview.chromium.org/11896113/diff/144001/chrome/browser/instant/instant_service.cc File chrome/browser/instant/instant_service.cc (right): https://codereview.chromium.org/11896113/diff/144001/chrome/browser/instant/instant_service.cc#newcode15 chrome/browser/instant/instant_service.cc:15: #include "content/public/browser/resource_context.h" On 2013/03/07 02:17:21, sreeram wrote: > Maybe ...
7 years, 9 months ago (2013-03-07 02:22:30 UTC) #75
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dhollowa@chromium.org/11896113/162012
7 years, 9 months ago (2013-03-07 02:23:09 UTC) #76
commit-bot: I haz the power
Retried try job too often on win_rel for step(s) interactive_ui_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_rel&number=119281
7 years, 9 months ago (2013-03-07 04:15:50 UTC) #77
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dhollowa@chromium.org/11896113/162012
7 years, 9 months ago (2013-03-07 05:48:07 UTC) #78
commit-bot: I haz the power
Failed to apply patch for chrome/browser/instant/instant_extended_browsertest.cc: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
7 years, 9 months ago (2013-03-07 05:48:25 UTC) #79
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/dhollowa@chromium.org/11896113/186001
7 years, 9 months ago (2013-03-07 07:41:14 UTC) #80
commit-bot: I haz the power
7 years, 9 months ago (2013-03-07 12:30:09 UTC) #81
Message was sent while issue was closed.
Change committed as 186680

Powered by Google App Engine
This is Rietveld 408576698