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

Issue 2399293002: Add MemoryCoordinatorDelegate (Closed)

Created:
4 years, 2 months ago by bashi
Modified:
4 years, 2 months ago
Reviewers:
haraken, jam, tasak, chrisha
CC:
chromium-reviews, jam, darin-cc_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add MemoryCoordinatorDelegate Memory coordinator requires some information only avaiable in chrome/browser. One option to work around content -> chrome dependency is to put an abstract class in content/public/broser and an impl class in chrome/browser. However, We want to keep browser-agnostic things in content as much as possible. This CL introduces a delegate class to keep things in content but also provide ways to access information in chrome/browser. BUG=617492 Committed: https://crrev.com/93362955b0109abee326322a952989fd5ee0d0f2 Cr-Commit-Position: refs/heads/master@{#425202}

Patch Set 1 #

Total comments: 12

Patch Set 2 : comments addressed #

Total comments: 2

Patch Set 3 : Add test #

Patch Set 4 : rename #

Patch Set 5 : Add workaround for tests #

Total comments: 2

Patch Set 6 : Use ContentBrowserClient #

Patch Set 7 : Add a separate delegate class #

Unified diffs Side-by-side diffs Delta from patch set Stats (+194 lines, -1 line) Patch
M chrome/browser/BUILD.gn View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/chrome_content_browser_client.h View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/chrome_content_browser_client.cc View 1 2 3 4 5 6 2 chunks +6 lines, -0 lines 0 comments Download
A chrome/browser/memory/chrome_memory_coordinator_delegate.h View 1 2 3 4 5 6 1 chunk +32 lines, -0 lines 0 comments Download
A chrome/browser/memory/chrome_memory_coordinator_delegate.cc View 1 2 3 4 5 6 1 chunk +34 lines, -0 lines 0 comments Download
M chrome/browser/memory/tab_manager.h View 1 2 3 4 5 6 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/memory/tab_manager.cc View 1 2 3 4 5 6 1 chunk +17 lines, -0 lines 0 comments Download
M chrome/browser/memory/tab_manager_browsertest.cc View 1 2 3 2 chunks +36 lines, -0 lines 0 comments Download
M content/browser/memory/memory_coordinator.h View 1 2 3 4 5 6 3 chunks +6 lines, -0 lines 0 comments Download
M content/browser/memory/memory_coordinator.cc View 1 2 3 4 5 4 chunks +21 lines, -1 line 0 comments Download
M content/public/browser/BUILD.gn View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M content/public/browser/content_browser_client.h View 1 2 3 4 5 6 2 chunks +5 lines, -0 lines 0 comments Download
M content/public/browser/content_browser_client.cc View 1 2 3 4 5 6 2 chunks +6 lines, -0 lines 0 comments Download
A content/public/browser/memory_coordinator_delegate.h View 1 2 3 4 5 6 1 chunk +23 lines, -0 lines 0 comments Download

Messages

Total messages: 40 (22 generated)
bashi
(This comes from https://codereview.chromium.org/2374343002/diff/20001/content/browser/memory/memory_coordinator_impl.cc#newcode140) Hi Chris, what do you think about this? If this looks ...
4 years, 2 months ago (2016-10-07 04:03:41 UTC) #2
haraken
https://codereview.chromium.org/2399293002/diff/1/chrome/browser/memory/tab_manager.cc File chrome/browser/memory/tab_manager.cc (right): https://codereview.chromium.org/2399293002/diff/1/chrome/browser/memory/tab_manager.cc#newcode424 chrome/browser/memory/tab_manager.cc:424: for (auto& tab : tab_stats) { On 2016/10/07 04:03:41, ...
4 years, 2 months ago (2016-10-07 06:38:19 UTC) #3
bashi
https://codereview.chromium.org/2399293002/diff/1/content/browser/memory/memory_coordinator.cc File content/browser/memory/memory_coordinator.cc (right): https://codereview.chromium.org/2399293002/diff/1/content/browser/memory/memory_coordinator.cc#newcode87 content/browser/memory/memory_coordinator.cc:87: if (iter->second.memory_state == mojom::MemoryState::SUSPENDED && On 2016/10/07 06:38:19, haraken ...
4 years, 2 months ago (2016-10-07 07:13:37 UTC) #4
haraken
LGTM on my side. https://codereview.chromium.org/2399293002/diff/1/content/browser/memory/memory_coordinator.h File content/browser/memory/memory_coordinator.h (right): https://codereview.chromium.org/2399293002/diff/1/content/browser/memory/memory_coordinator.h#newcode97 content/browser/memory/memory_coordinator.h:97: base::WeakPtr<MemoryCoordinatorDelegate> delegate_; On 2016/10/07 07:13:37, ...
4 years, 2 months ago (2016-10-07 07:31:07 UTC) #5
bashi
https://codereview.chromium.org/2399293002/diff/1/content/browser/memory/memory_coordinator.h File content/browser/memory/memory_coordinator.h (right): https://codereview.chromium.org/2399293002/diff/1/content/browser/memory/memory_coordinator.h#newcode97 content/browser/memory/memory_coordinator.h:97: base::WeakPtr<MemoryCoordinatorDelegate> delegate_; On 2016/10/07 07:31:07, haraken wrote: > On ...
4 years, 2 months ago (2016-10-07 07:34:01 UTC) #6
chrisha
mostly lgtm, modulo CanSuspendRenderer implementation. I'm fine with the delegate. There's more logic we can ...
4 years, 2 months ago (2016-10-10 23:25:08 UTC) #7
bashi
Thanks for review! https://codereview.chromium.org/2399293002/diff/20001/chrome/browser/memory/tab_manager.cc File chrome/browser/memory/tab_manager.cc (right): https://codereview.chromium.org/2399293002/diff/20001/chrome/browser/memory/tab_manager.cc#newcode427 chrome/browser/memory/tab_manager.cc:427: if (!CanDiscardTab(tab.tab_contents_id)) On 2016/10/10 23:25:08, chrisha ...
4 years, 2 months ago (2016-10-11 01:10:06 UTC) #12
bashi
jam@: could you review content/public/browser ?
4 years, 2 months ago (2016-10-11 01:12:36 UTC) #14
jam
https://codereview.chromium.org/2399293002/diff/80001/content/public/browser/memory_coordinator_delegate.h File content/public/browser/memory_coordinator_delegate.h (right): https://codereview.chromium.org/2399293002/diff/80001/content/public/browser/memory_coordinator_delegate.h#newcode17 content/public/browser/memory_coordinator_delegate.h:17: static void Set(const base::WeakPtr<MemoryCoordinatorDelegate>& delegate); nit: the general pattern ...
4 years, 2 months ago (2016-10-11 15:50:00 UTC) #21
bashi
I'm going to submit this CL. Chris, let me know if you have more comments ...
4 years, 2 months ago (2016-10-13 01:40:56 UTC) #22
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/2399293002/100001
4 years, 2 months ago (2016-10-13 01:41:31 UTC) #25
commit-bot: I haz the power
Try jobs failed on following builders: android_n5x_swarming_rel on master.tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_n5x_swarming_rel/builds/47475)
4 years, 2 months ago (2016-10-13 02:06:55 UTC) #27
bashi
On 2016/10/13 02:06:55, commit-bot: I haz the power wrote: > Try jobs failed on following ...
4 years, 2 months ago (2016-10-13 02:19:30 UTC) #28
bashi
chrisha@, jam@: The latest patch set has non-trivial changes since you reviewed. Could you take ...
4 years, 2 months ago (2016-10-13 03:04:00 UTC) #31
bashi
As there are some CLs[1,2] which depend on this CL, let me submit this. Please ...
4 years, 2 months ago (2016-10-13 23:27:30 UTC) #34
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/2399293002/120001
4 years, 2 months ago (2016-10-13 23:28:18 UTC) #37
commit-bot: I haz the power
Committed patchset #7 (id:120001)
4 years, 2 months ago (2016-10-13 23:33:05 UTC) #38
commit-bot: I haz the power
4 years, 2 months ago (2016-10-13 23:34:50 UTC) #40
Message was sent while issue was closed.
Patchset 7 (id:??) landed as
https://crrev.com/93362955b0109abee326322a952989fd5ee0d0f2
Cr-Commit-Position: refs/heads/master@{#425202}

Powered by Google App Engine
This is Rietveld 408576698