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

Issue 393133002: Migrate HostZoomMap to live in StoragePartition. (Closed)

Created:
6 years, 5 months ago by wjmaclean
Modified:
6 years, 1 month ago
Project:
chromium
Visibility:
Public.

Description

Migrate HostZoomMap to live in StoragePartition. This CL changes the persistence of host zoom levels to be on a per-storage-partition basis, as opposed to (the current) per-profile basis. This is needed to allow WebView content (withing apps) to keep their zoom levels independent of those in the main browser window. BUG=335317 Committed: https://crrev.com/caa7d6d94e81c92083a3eb8d18913e33c74baf66 Cr-Commit-Position: refs/heads/master@{#303841}

Patch Set 1 #

Patch Set 2 : Fully functional, but needs tests updated. #

Patch Set 3 : Changes to fix (some, but not all) tests. #

Patch Set 4 : Fix OffTheRecordProfileImpl unittest, clean up deps, etc. #

Patch Set 5 : Rebase to r288093. #

Total comments: 15

Patch Set 6 : Address comments. #

Total comments: 18

Patch Set 7 : Remove ref counts, improve comments. #

Total comments: 28

Patch Set 8 : Address comments. #

Total comments: 42

Patch Set 9 : Move default zoom level to per-partition, address new comments. #

Patch Set 10 : HostZoomMap now sends event when default zoom level changes; converted two unit tests. #

Patch Set 11 : ZoomController should relay only relevant default zoom level change events. #

Patch Set 12 : Rebased to src@290550 #

Patch Set 13 : Fix test compilation. #

Total comments: 10

Patch Set 14 : Remove HostZoomMap pointer from ResourceContextImpl, address comments. #

Patch Set 15 : Rebase to src@291416 #

Patch Set 16 : Fix compile (unused var). #

Patch Set 17 : Fix test compilation. #

Patch Set 18 : Fix EventRouterForwarderTest. #

Patch Set 19 : Rebase to 291677. #

Total comments: 1

Patch Set 20 : Remove reference to default zoom level in render_preferences_util::UpdateFromSystemSettings() #

Patch Set 21 : Rebase to 292154 (After rename HostZoomMap::GetDefaultForBrowserCOntext()) #

Patch Set 22 : Rebase to 293130, after ZoomController simplification patch. #

Patch Set 23 : Rebase to master@295266. #

Patch Set 24 : Manual re-base after https://codereview.chromium.org/541103002/ #

Patch Set 25 : Fix unit tests. #

Total comments: 16

Patch Set 26 : Address suggestions #

Patch Set 27 : Restore parent zoom level tracking to OffTheRecordProfileImpl (unit test -> browser test). #

Patch Set 28 : Perhaps HostZoomLevelContextDeleter was needed after all ... #

Total comments: 44

Patch Set 29 : Address comments. #

Patch Set 30 : Add more overrides for BrowserContext subclasses. #

Patch Set 31 : Add proper method mock for BrowserContext::CreateZoomLevelDelegate() override. #

Total comments: 11

Patch Set 32 : Address comments, include thread checks. #

Patch Set 33 : Fix Android compile, remove unused variable. #

Total comments: 8

Patch Set 34 : Really fix Android compile. #

Patch Set 35 : Address sky@'s comments. #

Total comments: 8

Patch Set 36 : Address comments; patch for landing. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+507 lines, -379 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 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 1 chunk +2 lines, -0 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 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/browsing_data/browsing_data_remover_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 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/profiles/host_zoom_map_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 3 chunks +58 lines, -0 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 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 4 chunks +9 lines, -5 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 30 31 32 33 34 35 4 chunks +18 lines, -7 lines 0 comments Download
M chrome/browser/profiles/off_the_record_profile_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 1 chunk +0 lines, -189 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 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/browser/profiles/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 2 chunks +8 lines, -0 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 30 31 32 3 chunks +2 lines, -8 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 30 31 32 33 34 35 7 chunks +11 lines, -16 lines 0 comments Download
M chrome/browser/ui/app_list/test/fake_profile.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 2 chunks +3 lines, -0 lines 0 comments Download
M chrome/browser/ui/app_list/test/fake_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 30 31 32 33 34 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/browser/ui/toolbar/wrench_menu_model.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 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/ui/views/toolbar/wrench_menu.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 3 chunks +7 lines, -6 lines 0 comments Download
M chrome/browser/ui/webui/options/content_settings_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 1 chunk +8 lines, -5 lines 0 comments Download
M chrome/browser/ui/zoom/chrome_zoom_level_prefs.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 4 chunks +10 lines, -10 lines 0 comments Download
M chrome/browser/ui/zoom/chrome_zoom_level_prefs.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 2 chunks +34 lines, -34 lines 0 comments Download
M chrome/browser/ui/zoom/zoom_controller.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 1 chunk +2 lines, -4 lines 0 comments Download
M chrome/browser/ui/zoom/zoom_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 3 chunks +3 lines, -5 lines 0 comments Download
M chrome/browser/ui/zoom/zoom_controller_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 3 chunks +36 lines, -3 lines 0 comments Download
M chrome/browser/ui/zoom/zoom_controller_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 1 chunk +0 lines, -19 lines 0 comments Download
M chrome/chrome_tests_unit.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 2 chunks +0 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 21 22 23 24 25 26 27 28 2 chunks +3 lines, -0 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 30 31 32 33 34 1 chunk +5 lines, -0 lines 0 comments Download
M content/browser/download/download_manager_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 3 chunks +13 lines, -0 lines 0 comments Download
A content/browser/host_zoom_level_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 29 30 31 1 chunk +61 lines, -0 lines 0 comments Download
A content/browser/host_zoom_level_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 29 30 31 32 33 34 35 1 chunk +32 lines, -0 lines 0 comments Download
M content/browser/host_zoom_map_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 2 chunks +1 line, -3 lines 0 comments Download
M content/browser/host_zoom_map_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 6 chunks +32 lines, -17 lines 0 comments Download
M content/browser/loader/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 1 chunk +1 line, -2 lines 0 comments Download
M content/browser/loader/resource_dispatcher_host_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 1 chunk +1 line, -1 line 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 4 chunks +8 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 4 chunks +9 lines, -0 lines 0 comments Download
M content/browser/loader/resource_scheduler_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 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/plugin_process_host.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 1 chunk +4 lines, -3 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 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/renderer_host/render_view_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 2 chunks +2 lines, -4 lines 0 comments Download
M content/browser/resource_context_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +0 lines, -3 lines 0 comments Download
M content/browser/resource_context_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 5 chunks +0 lines, -28 lines 0 comments Download
M content/browser/storage_partition_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 4 chunks +7 lines, -1 line 0 comments Download
M content/browser/storage_partition_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 6 chunks +25 lines, -3 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 2 chunks +3 lines, -0 lines 0 comments Download
M content/public/browser/browser_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 2 chunks +6 lines, -0 lines 0 comments Download
M content/public/browser/host_zoom_map.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 2 chunks +12 lines, -0 lines 0 comments Download
M content/public/browser/storage_partition.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 2 chunks +6 lines, -0 lines 0 comments Download
A content/public/browser/zoom_level_delegate.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 +21 lines, -0 lines 0 comments Download
M content/public/test/mock_render_process_host.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 2 chunks +2 lines, -1 line 0 comments Download
M content/public/test/test_browser_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 2 chunks +3 lines, -0 lines 0 comments Download
M content/public/test/test_browser_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 +5 lines, -0 lines 0 comments Download
M content/shell/browser/shell_browser_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 29 2 chunks +3 lines, -0 lines 0 comments Download
M content/shell/browser/shell_browser_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 29 1 chunk +5 lines, -0 lines 0 comments Download

Messages

Total messages: 47 (6 generated)
wjmaclean
ajwong@ Would you be willing to take the first look at this?
6 years, 4 months ago (2014-08-11 18:42:15 UTC) #1
awong
I like where this is going, but am mostly confused by why there's still an ...
6 years, 4 months ago (2014-08-11 22:36:34 UTC) #2
wjmaclean
I've addressed your first round of comments below. Here's a link to a design doc ...
6 years, 4 months ago (2014-08-12 16:57:44 UTC) #3
awong
Overall looks pretty solid. Gave a few suggestions regarding removing refcounts. Otherwise, the main suggestion ...
6 years, 4 months ago (2014-08-12 21:07:07 UTC) #4
wjmaclean
+ fsamuel@ for look at storage partitions code. https://codereview.chromium.org/393133002/diff/100001/chrome/browser/profiles/profile.h File chrome/browser/profiles/profile.h (right): https://codereview.chromium.org/393133002/diff/100001/chrome/browser/profiles/profile.h#newcode392 chrome/browser/profiles/profile.h:392: void ...
6 years, 4 months ago (2014-08-13 17:16:04 UTC) #5
Fady Samuel
Some initial thoughts in addition to my comments in your doc. https://codereview.chromium.org/393133002/diff/80001/content/public/browser/host_zoom_map.h File content/public/browser/host_zoom_map.h (right): ...
6 years, 4 months ago (2014-08-13 19:45:43 UTC) #6
wjmaclean
I'm currently working on making DefaultZoomLevel be per-partition, and will upload a patch for that ...
6 years, 4 months ago (2014-08-14 18:18:22 UTC) #7
Fady Samuel
https://codereview.chromium.org/393133002/diff/120001/chrome/browser/profiles/profile.cc File chrome/browser/profiles/profile.cc (right): https://codereview.chromium.org/393133002/diff/120001/chrome/browser/profiles/profile.cc#newcode282 chrome/browser/profiles/profile.cc:282: base::Bind(&Profile::TrackZoomLevelChanged, base::Unretained(this))); On 2014/08/14 18:18:21, wjmaclean wrote: > On ...
6 years, 4 months ago (2014-08-14 18:56:27 UTC) #8
wjmaclean
https://codereview.chromium.org/393133002/diff/120001/chrome/browser/profiles/profile.cc File chrome/browser/profiles/profile.cc (right): https://codereview.chromium.org/393133002/diff/120001/chrome/browser/profiles/profile.cc#newcode282 chrome/browser/profiles/profile.cc:282: base::Bind(&Profile::TrackZoomLevelChanged, base::Unretained(this))); On 2014/08/14 18:56:26, Fady Samuel wrote: > ...
6 years, 4 months ago (2014-08-14 19:12:20 UTC) #9
wjmaclean
https://codereview.chromium.org/393133002/diff/140001/chrome/browser/ui/zoom/zoom_level_prefs_store_impl.cc File chrome/browser/ui/zoom/zoom_level_prefs_store_impl.cc (right): https://codereview.chromium.org/393133002/diff/140001/chrome/browser/ui/zoom/zoom_level_prefs_store_impl.cc#newcode22 chrome/browser/ui/zoom/zoom_level_prefs_store_impl.cc:22: namespace browser { Ooops, this needs to be chrome ...
6 years, 4 months ago (2014-08-14 19:42:18 UTC) #10
Fady Samuel
Another set of comments. If you feel it would be more productive to chat over ...
6 years, 4 months ago (2014-08-15 15:03:02 UTC) #11
wjmaclean
I've moved default zoom level preferences to be per-partition. This isn't working completely (seem to ...
6 years, 4 months ago (2014-08-15 22:13:51 UTC) #12
wjmaclean
On 2014/08/15 22:13:51, wjmaclean wrote: > I've moved default zoom level preferences to be per-partition. ...
6 years, 4 months ago (2014-08-15 22:19:17 UTC) #13
wjmaclean
Modified to convert two ZoomController unit tests to browser tests (they now require more machinery ...
6 years, 4 months ago (2014-08-19 15:05:32 UTC) #14
awong
Slightly uncomfortable with adding logic to Profile. You'll want to double check with a profile ...
6 years, 4 months ago (2014-08-20 19:56:59 UTC) #15
wjmaclean
I'll have a new version of the CL up soon, but wanted to reply quickly ...
6 years, 4 months ago (2014-08-20 20:15:45 UTC) #16
wjmaclean
ajwong@ I've addressed your last set of comments in this patch. ajwong@, fsamuel@ - before ...
6 years, 4 months ago (2014-08-22 15:43:03 UTC) #17
wjmaclean
Revised CL to remove a lingering reference to default zoom levels in profiles. https://codereview.chromium.org/393133002/diff/360001/chrome/browser/renderer_preferences_util.cc File ...
6 years, 3 months ago (2014-08-26 15:36:21 UTC) #18
wjmaclean
Updating reference CL after landing https://codereview.chromium.org/508263002/
6 years, 3 months ago (2014-09-03 17:58:04 UTC) #19
Fady Samuel
https://codereview.chromium.org/393133002/diff/480001/chrome/browser/ui/webui/options/browser_options_handler.cc File chrome/browser/ui/webui/options/browser_options_handler.cc (right): https://codereview.chromium.org/393133002/diff/480001/chrome/browser/ui/webui/options/browser_options_handler.cc#newcode1541 chrome/browser/ui/webui/options/browser_options_handler.cc:1541: // TODO9wjmaclean) Verify this is still correct. typo https://codereview.chromium.org/393133002/diff/480001/content/browser/loader/resource_message_filter.cc ...
6 years, 1 month ago (2014-11-03 18:57:45 UTC) #20
wjmaclean
CL updated. https://codereview.chromium.org/393133002/diff/480001/chrome/browser/ui/webui/options/browser_options_handler.cc File chrome/browser/ui/webui/options/browser_options_handler.cc (right): https://codereview.chromium.org/393133002/diff/480001/chrome/browser/ui/webui/options/browser_options_handler.cc#newcode1541 chrome/browser/ui/webui/options/browser_options_handler.cc:1541: // TODO9wjmaclean) Verify this is still correct. ...
6 years, 1 month ago (2014-11-03 21:53:59 UTC) #21
wjmaclean
https://codereview.chromium.org/393133002/diff/480001/content/browser/host_zoom_level_context.h File content/browser/host_zoom_level_context.h (right): https://codereview.chromium.org/393133002/diff/480001/content/browser/host_zoom_level_context.h#newcode50 content/browser/host_zoom_level_context.h:50: // The prefs_store pointer needs to be released before ...
6 years, 1 month ago (2014-11-03 22:11:07 UTC) #22
Fady Samuel
A few more thoughts https://codereview.chromium.org/393133002/diff/480001/chrome/browser/profiles/profile.h File chrome/browser/profiles/profile.h (right): https://codereview.chromium.org/393133002/diff/480001/chrome/browser/profiles/profile.h#newcode401 chrome/browser/profiles/profile.h:401: double GetDefaultZoomLevel(); nit: Can this ...
6 years, 1 month ago (2014-11-03 22:11:11 UTC) #23
wjmaclean
creis@chromium.org: Please review changes in content/ I think this is ready to go ... thanks ...
6 years, 1 month ago (2014-11-04 19:34:25 UTC) #25
Charlie Reis
Overall I think this makes sense, but I'm having trouble following a fair amount of ...
6 years, 1 month ago (2014-11-04 23:43:17 UTC) #26
wjmaclean
creis@ - I've addressed all your first-round comments. Please let me know your thoughts on ...
6 years, 1 month ago (2014-11-05 21:55:43 UTC) #27
Charlie Reis
Thanks. I wasn't able to get to this today, so I may have to return ...
6 years, 1 month ago (2014-11-06 01:10:20 UTC) #28
Charlie Reis
Ok, I think this is probably ready as far as I understand it. My last ...
6 years, 1 month ago (2014-11-11 05:29:22 UTC) #29
wjmaclean
creis@ - I think I've addressed your latest comments, ptal. https://codereview.chromium.org/393133002/diff/600001/chrome/browser/profiles/off_the_record_profile_impl.h File chrome/browser/profiles/off_the_record_profile_impl.h (right): https://codereview.chromium.org/393133002/diff/600001/chrome/browser/profiles/off_the_record_profile_impl.h#newcode107 ...
6 years, 1 month ago (2014-11-11 19:20:52 UTC) #30
wjmaclean
bauerb@chromium.org: Please review changes in browser/profile ? Thanks!
6 years, 1 month ago (2014-11-11 19:27:47 UTC) #32
wjmaclean
sky@chromium.org: Please review changes in chrome/browser/ui chrome/test ? Thanks!
6 years, 1 month ago (2014-11-11 19:29:38 UTC) #34
sky
LGTM https://codereview.chromium.org/393133002/diff/640001/chrome/browser/ui/app_list/test/fake_profile.cc File chrome/browser/ui/app_list/test/fake_profile.cc (right): https://codereview.chromium.org/393133002/diff/640001/chrome/browser/ui/app_list/test/fake_profile.cc#newcode30 chrome/browser/ui/app_list/test/fake_profile.cc:30: return scoped_ptr<content::ZoomLevelDelegate>(); return nullptr (see https://groups.google.com/a/chromium.org/forum/#!searchin/chromium-dev/scoped_ptr$20nullptr/chromium-dev/4mijeJHzxLg/PZTbe_7xaOIJ ). https://codereview.chromium.org/393133002/diff/640001/chrome/browser/ui/zoom/chrome_zoom_level_prefs.cc ...
6 years, 1 month ago (2014-11-11 20:21:56 UTC) #36
wjmaclean
boliu@chromium.org: Please review changes in android_webview/browser/ Thanks!
6 years, 1 month ago (2014-11-11 20:48:12 UTC) #38
wjmaclean
https://codereview.chromium.org/393133002/diff/640001/chrome/browser/ui/app_list/test/fake_profile.cc File chrome/browser/ui/app_list/test/fake_profile.cc (right): https://codereview.chromium.org/393133002/diff/640001/chrome/browser/ui/app_list/test/fake_profile.cc#newcode30 chrome/browser/ui/app_list/test/fake_profile.cc:30: return scoped_ptr<content::ZoomLevelDelegate>(); On 2014/11/11 20:21:56, sky wrote: > return ...
6 years, 1 month ago (2014-11-11 20:59:09 UTC) #39
boliu
android_webview rs lgtm https://codereview.chromium.org/393133002/diff/680001/content/browser/host_zoom_level_context.cc File content/browser/host_zoom_level_context.cc (right): https://codereview.chromium.org/393133002/diff/680001/content/browser/host_zoom_level_context.cc#newcode16 content/browser/host_zoom_level_context.cc:16: zoom_level_delegate_(zoom_level_delegate.release()) { s/release/Pass/
6 years, 1 month ago (2014-11-11 21:47:11 UTC) #40
Charlie Reis
Thanks! content/ LGTM. https://codereview.chromium.org/393133002/diff/600001/content/browser/host_zoom_map_impl.cc File content/browser/host_zoom_map_impl.cc (right): https://codereview.chromium.org/393133002/diff/600001/content/browser/host_zoom_map_impl.cc#newcode257 content/browser/host_zoom_map_impl.cc:257: // no guarantee setting a double ...
6 years, 1 month ago (2014-11-11 23:52:01 UTC) #41
Bernhard Bauer
Profiles LGTM w/ some nits (keeping in mind that I'm not a profiles OWNER, but ...
6 years, 1 month ago (2014-11-12 10:39:20 UTC) #42
wjmaclean
https://codereview.chromium.org/393133002/diff/680001/chrome/browser/profiles/off_the_record_profile_impl.cc File chrome/browser/profiles/off_the_record_profile_impl.cc (right): https://codereview.chromium.org/393133002/diff/680001/chrome/browser/profiles/off_the_record_profile_impl.cc#newcode202 chrome/browser/profiles/off_the_record_profile_impl.cc:202: DCHECK_NE(profile_->GetProfileType(), INCOGNITO_PROFILE); On 2014/11/12 10:39:20, Bernhard Bauer wrote: > ...
6 years, 1 month ago (2014-11-12 15:12:55 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/393133002/700001
6 years, 1 month ago (2014-11-12 15:13:23 UTC) #45
commit-bot: I haz the power
Committed patchset #36 (id:700001)
6 years, 1 month ago (2014-11-12 16:42:26 UTC) #46
commit-bot: I haz the power
6 years, 1 month ago (2014-11-12 16:42:58 UTC) #47
Message was sent while issue was closed.
Patchset 36 (id:??) landed as
https://crrev.com/caa7d6d94e81c92083a3eb8d18913e33c74baf66
Cr-Commit-Position: refs/heads/master@{#303841}

Powered by Google App Engine
This is Rietveld 408576698