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

Issue 528363002: Move webCacheManager to //components. (Closed)

Created:
6 years, 3 months ago by Xi Han
Modified:
6 years, 3 months ago
CC:
chromium-reviews, chromium-apps-reviews_chromium.org, darin-cc_chromium.org, jam, extensions-reviews_chromium.org, wjmaclean, lfg
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

WebCacheManager::ClearCacheOnNavigation() is used by webrequest api, which will be moved to //extensions. So we need to resolve its the dependency on WebCacheManager by moving WebCacheManager to //components. There are two ipc messages sent in WebCacheManger: -ChromeViewMsg_SetCacheCapacities -ChromeViewMsg_ClearCache Both ipc handlers were in ChromeRenderProcessObserver. These two ipcs are renamed as WebCacheMsg_XXX, and we introduce WebCacheRenderProcessObserver and handle these ipcs in //components. BUG=352293, 411437 TBR=agl@chromium.org Committed: https://crrev.com/149b92db00bc1deab22599e7d3da3fc8be2c0d8b Cr-Commit-Position: refs/heads/master@{#294475}

Patch Set 1 : #

Patch Set 2 : Add WebCacheRenderProcessObserver. #

Patch Set 3 : Move WebCacheManager to components. #

Total comments: 1

Patch Set 4 : Remove an unnecessary dependency in web_cache.gypi. #

Total comments: 30

Patch Set 5 : Changes are made. #

Total comments: 6

Patch Set 6 : File a bug and update comments. #

Patch Set 7 : Update gn file to avoid build web_cache on Android. #

Patch Set 8 : Initialize WebCacheRenderProcessObserver in ShellContentRenderClient. #

Patch Set 9 : Add OWNERS. #

Total comments: 8

Patch Set 10 : Small changes are made. #

Total comments: 2

Patch Set 11 : Update comments and some clean up. #

Total comments: 1

Patch Set 12 : Add unit test and remove browser test. #

Total comments: 4

Patch Set 13 : Remove the added callback in WebCacheManager. #

Total comments: 7

Patch Set 14 : More unit tests are added. #

Patch Set 15 : #

Patch Set 16 : rebase #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+525 lines, -1198 lines) Patch
M chrome/browser/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/browsing_data/browsing_data_remover.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/extensions/api/web_request/web_request_api_helpers.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +2 lines, -2 lines 0 comments Download
M chrome/browser/extensions/api/web_request/web_request_time_tracker.cc View 1 2 3 4 1 chunk +0 lines, -5 lines 0 comments Download
M chrome/browser/prefs/browser_prefs.cc View 1 2 3 4 5 6 7 2 chunks +0 lines, -2 lines 0 comments Download
M chrome/browser/renderer_host/chrome_render_message_filter.cc View 1 2 2 chunks +3 lines, -2 lines 0 comments Download
D chrome/browser/renderer_host/web_cache_manager.h View 1 2 1 chunk +0 lines, -222 lines 0 comments Download
M chrome/browser/renderer_host/web_cache_manager.cc View 1 2 1 chunk +0 lines, -444 lines 0 comments Download
M chrome/browser/renderer_host/web_cache_manager_browsertest.cc View 1 2 3 4 1 chunk +0 lines, -69 lines 0 comments Download
M chrome/browser/renderer_host/web_cache_manager_unittest.cc View 1 2 1 chunk +0 lines, -311 lines 0 comments Download
M chrome/browser/task_manager/task_manager.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +0 lines, -1 line 0 comments Download
M chrome/browser/ui/tab_contents/core_tab_helper.cc View 1 2 3 chunks +2 lines, -2 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 2 chunks +1 line, -2 lines 0 comments Download
M chrome/chrome_renderer.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -0 lines 0 comments Download
M chrome/chrome_tests.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +9 lines, -10 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 1 chunk +0 lines, -1 line 0 comments Download
M chrome/common/pref_names.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -1 line 0 comments Download
M chrome/common/pref_names.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +0 lines, -4 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 1 chunk +0 lines, -10 lines 0 comments Download
M chrome/renderer/BUILD.gn View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M chrome/renderer/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +1 line, -0 lines 0 comments Download
M chrome/renderer/chrome_content_renderer_client.h View 1 2 3 4 5 6 7 2 chunks +5 lines, -0 lines 0 comments Download
M chrome/renderer/chrome_content_renderer_client.cc View 1 2 3 4 5 6 7 4 chunks +4 lines, -1 line 0 comments Download
M chrome/renderer/chrome_render_process_observer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 3 chunks +0 lines, -13 lines 0 comments Download
M chrome/renderer/chrome_render_process_observer.cc View 1 6 chunks +1 line, -43 lines 0 comments Download
M chrome/renderer/chrome_render_view_observer.h View 1 2 4 chunks +7 lines, -3 lines 0 comments Download
M chrome/renderer/chrome_render_view_observer.cc View 1 2 3 chunks +5 lines, -5 lines 0 comments Download
M components/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +5 lines, -0 lines 0 comments Download
M components/components.gyp View 1 1 chunk +1 line, -0 lines 0 comments Download
M components/components_tests.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +4 lines, -0 lines 0 comments Download
A components/web_cache.gypi View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +57 lines, -0 lines 0 comments Download
A components/web_cache/OWNERS View 1 2 3 4 5 1 chunk +10 lines, -0 lines 1 comment Download
A + components/web_cache/browser/BUILD.gn View 1 2 3 4 1 chunk +6 lines, -6 lines 0 comments Download
A components/web_cache/browser/DEPS View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +5 lines, -0 lines 0 comments Download
A + components/web_cache/browser/web_cache_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +25 lines, -6 lines 0 comments Download
A + components/web_cache/browser/web_cache_manager.cc View 1 2 3 4 12 7 chunks +11 lines, -19 lines 0 comments Download
A + components/web_cache/browser/web_cache_manager_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +156 lines, -1 line 0 comments Download
A + components/web_cache/common/BUILD.gn View 1 2 3 4 1 chunk +4 lines, -5 lines 0 comments Download
A + components/web_cache/common/DEPS View 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/web_cache/common/OWNERS View 1 2 3 4 5 6 7 8 9 0 chunks +-1 lines, --1 lines 0 comments Download
A + components/web_cache/common/web_cache_message_generator.h View 1 1 chunk +1 line, -1 line 0 comments Download
A + components/web_cache/common/web_cache_message_generator.cc View 1 1 chunk +6 lines, -6 lines 0 comments Download
A components/web_cache/common/web_cache_messages.h View 1 2 3 4 1 chunk +23 lines, -0 lines 0 comments Download
A components/web_cache/renderer/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +17 lines, -0 lines 0 comments Download
A + components/web_cache/renderer/DEPS View 1 2 1 chunk +0 lines, -1 line 0 comments Download
A components/web_cache/renderer/web_cache_render_process_observer.h View 1 2 3 4 5 11 1 chunk +51 lines, -0 lines 0 comments Download
A components/web_cache/renderer/web_cache_render_process_observer.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +84 lines, -0 lines 0 comments Download
M content/content_shell.gypi View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download
M content/shell/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -0 lines 0 comments Download
M content/shell/renderer/DEPS View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download
M content/shell/renderer/shell_content_renderer_client.h View 1 2 3 4 5 6 7 2 chunks +5 lines, -0 lines 0 comments Download
M content/shell/renderer/shell_content_renderer_client.cc View 1 2 3 4 5 6 7 2 chunks +5 lines, -0 lines 0 comments Download
M extensions/shell/app_shell.gyp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M ipc/ipc_message_start.h View 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 80 (32 generated)
Xi Han
Please review this CL and let me know if you have any idea about the ...
6 years, 3 months ago (2014-09-04 21:32:55 UTC) #11
Fady Samuel
https://codereview.chromium.org/528363002/diff/220001/components/web_cache/browser/web_cache_manager.cc File components/web_cache/browser/web_cache_manager.cc (right): https://codereview.chromium.org/528363002/diff/220001/components/web_cache/browser/web_cache_manager.cc#newcode358 components/web_cache/browser/web_cache_manager.cc:358: UMA_HISTOGRAM_COUNTS_100("Cache.ActiveTabs", active_renderers_.size()); The windows compiler doesn't seem to like ...
6 years, 3 months ago (2014-09-04 22:38:52 UTC) #12
Xi Han
+jamescook@chromium.org James: please review this CL. Do you have any idea about the failures in ...
6 years, 3 months ago (2014-09-05 14:19:19 UTC) #14
James Cook
On 2014/09/05 14:19:19, hanxi wrote: > mailto:+jamescook@chromium.org > James: please review this CL. Do you ...
6 years, 3 months ago (2014-09-05 16:32:44 UTC) #15
James Cook
https://codereview.chromium.org/528363002/diff/240001/chrome/browser/extensions/api/web_request/web_request_time_tracker.cc File chrome/browser/extensions/api/web_request/web_request_time_tracker.cc (left): https://codereview.chromium.org/528363002/diff/240001/chrome/browser/extensions/api/web_request/web_request_time_tracker.cc#oldcode13 chrome/browser/extensions/api/web_request/web_request_time_tracker.cc:13: #include "content/public/browser/browser_thread.h" Hooray for cleaning up unused includes! https://codereview.chromium.org/528363002/diff/240001/chrome/browser/renderer_host/web_cache_manager_browsertest.cc ...
6 years, 3 months ago (2014-09-05 16:53:18 UTC) #16
Xi Han
On 2014/09/05 16:32:44, James Cook wrote: > On 2014/09/05 14:19:19, hanxi wrote: > > mailto:+jamescook@chromium.org ...
6 years, 3 months ago (2014-09-05 19:38:35 UTC) #17
Xi Han
https://codereview.chromium.org/528363002/diff/240001/chrome/browser/extensions/api/web_request/web_request_time_tracker.cc File chrome/browser/extensions/api/web_request/web_request_time_tracker.cc (left): https://codereview.chromium.org/528363002/diff/240001/chrome/browser/extensions/api/web_request/web_request_time_tracker.cc#oldcode13 chrome/browser/extensions/api/web_request/web_request_time_tracker.cc:13: #include "content/public/browser/browser_thread.h" On 2014/09/05 16:53:18, James Cook wrote: > ...
6 years, 3 months ago (2014-09-05 19:39:25 UTC) #18
James Cook
LGTM with nits https://codereview.chromium.org/528363002/diff/260001/chrome/chrome_tests.gypi File chrome/chrome_tests.gypi (right): https://codereview.chromium.org/528363002/diff/260001/chrome/chrome_tests.gypi#newcode866 chrome/chrome_tests.gypi:866: '../components/web_cache/browser/web_cache_manager_browsertest.cc', While you're in this file ...
6 years, 3 months ago (2014-09-05 19:47:58 UTC) #19
Xi Han
+brettw@chromium.org: Please review changes in: BUILD.gn files. Thanks! https://codereview.chromium.org/528363002/diff/260001/chrome/chrome_tests.gypi File chrome/chrome_tests.gypi (right): https://codereview.chromium.org/528363002/diff/260001/chrome/chrome_tests.gypi#newcode866 chrome/chrome_tests.gypi:866: '../components/web_cache/browser/web_cache_manager_browsertest.cc', ...
6 years, 3 months ago (2014-09-05 21:01:42 UTC) #22
Xi Han
sky@chromium.org: Please review changes in -chrome/browser/* -chrome/renderer/* Thanks!
6 years, 3 months ago (2014-09-05 21:04:16 UTC) #24
Xi Han
+kenrb@chromium.org: Please review changes in -chrome/common/render_messages.h -ipc/ipc_message_start.h Thanks!
6 years, 3 months ago (2014-09-05 21:05:48 UTC) #26
Xi Han
Brett: I have updated the components/GUILD.gn file:)
6 years, 3 months ago (2014-09-05 21:28:49 UTC) #27
Xi Han
erikwright@chromium.org: Please review changes in -components/*. Thanks!
6 years, 3 months ago (2014-09-05 21:31:07 UTC) #29
sky
LGTM
6 years, 3 months ago (2014-09-05 22:13:07 UTC) #30
brettw
gn build lgtm
6 years, 3 months ago (2014-09-05 23:30:29 UTC) #31
Xi Han
Hi James: I updated the ShellContentRenderClient and initialized WebCacheRenderProcessObserver there. Please take another look. Thanks!
6 years, 3 months ago (2014-09-08 14:24:44 UTC) #32
kenrb
Can you please add an OWNERS file to components/web_cache/common with the per-file overrides for IPC ...
6 years, 3 months ago (2014-09-08 15:58:54 UTC) #34
Xi Han
On 2014/09/08 15:58:54, kenrb wrote: > Can you please add an OWNERS file to components/web_cache/common ...
6 years, 3 months ago (2014-09-08 16:12:31 UTC) #35
kenrb
ipc lgtm with very minor nit. https://codereview.chromium.org/528363002/diff/380001/components/web_cache/common/OWNERS File components/web_cache/common/OWNERS (right): https://codereview.chromium.org/528363002/diff/380001/components/web_cache/common/OWNERS#newcode2 components/web_cache/common/OWNERS:2: # # new ...
6 years, 3 months ago (2014-09-08 16:49:28 UTC) #36
James Cook
lgtm but does app_shell need WebCacheRenderProcessObserver in extensions/shell/renderer/shell_content_renderer_client.cc?
6 years, 3 months ago (2014-09-08 17:32:32 UTC) #37
erikwright (departed)
https://codereview.chromium.org/528363002/diff/380001/components/BUILD.gn File components/BUILD.gn (right): https://codereview.chromium.org/528363002/diff/380001/components/BUILD.gn#newcode176 components/BUILD.gn:176: "//components/web_cache/browser", # Blocked on content. and blink? https://codereview.chromium.org/528363002/diff/380001/components/BUILD.gn#newcode177 components/BUILD.gn:177: ...
6 years, 3 months ago (2014-09-08 18:17:50 UTC) #38
Xi Han
On 2014/09/08 17:32:32, James Cook wrote: > lgtm but does app_shell need WebCacheRenderProcessObserver in > ...
6 years, 3 months ago (2014-09-08 18:23:57 UTC) #39
James Cook
Yes, I think that's right.
6 years, 3 months ago (2014-09-08 18:28:29 UTC) #40
Xi Han
https://codereview.chromium.org/528363002/diff/380001/components/BUILD.gn File components/BUILD.gn (right): https://codereview.chromium.org/528363002/diff/380001/components/BUILD.gn#newcode176 components/BUILD.gn:176: "//components/web_cache/browser", # Blocked on content. On 2014/09/08 18:17:49, erikwright ...
6 years, 3 months ago (2014-09-08 18:52:23 UTC) #42
Xi Han
+agl@chromium.org, Please review changes in: -components/web_cache/common/DEPS Thanks!
6 years, 3 months ago (2014-09-08 18:59:39 UTC) #43
erikwright (departed)
https://codereview.chromium.org/528363002/diff/440001/components/web_cache/browser/web_cache_manager_browsertest.cc File components/web_cache/browser/web_cache_manager_browsertest.cc (right): https://codereview.chromium.org/528363002/diff/440001/components/web_cache/browser/web_cache_manager_browsertest.cc#newcode28 components/web_cache/browser/web_cache_manager_browsertest.cc:28: IN_PROC_BROWSER_TEST_F(WebCacheManagerBrowserTest, CrashOnceOnly) { As far as I can tell, ...
6 years, 3 months ago (2014-09-08 19:20:00 UTC) #44
Xi Han
On 2014/09/08 19:20:00, erikwright wrote: > https://codereview.chromium.org/528363002/diff/440001/components/web_cache/browser/web_cache_manager_browsertest.cc > File components/web_cache/browser/web_cache_manager_browsertest.cc (right): > > https://codereview.chromium.org/528363002/diff/440001/components/web_cache/browser/web_cache_manager_browsertest.cc#newcode28 > ...
6 years, 3 months ago (2014-09-09 15:01:21 UTC) #45
erikwright (departed)
It seems like there is some missing unit test coverage then, and that this would ...
6 years, 3 months ago (2014-09-09 15:08:02 UTC) #46
Xi Han
Erik: a new unit test is added in web_cache_manager_unittest.cc, please take another look. Thanks.
6 years, 3 months ago (2014-09-10 15:15:33 UTC) #48
Xi Han
Sadurl: please take a look at: -web_cache_manager_unittest.cc. MessageLoop::QuitWhenIdleClosure() is passed in WebCacheManager as a callback ...
6 years, 3 months ago (2014-09-10 15:21:01 UTC) #50
Xi Han
+agl@chromium.org: Please review changes in: -components/web_cache/common/DEPS Thanks!
6 years, 3 months ago (2014-09-10 15:24:21 UTC) #51
erikwright (departed)
https://codereview.chromium.org/528363002/diff/480001/components/web_cache/browser/web_cache_manager.h File components/web_cache/browser/web_cache_manager.h (right): https://codereview.chromium.org/528363002/diff/480001/components/web_cache/browser/web_cache_manager.h#newcode88 components/web_cache/browser/web_cache_manager.h:88: // function that guaranty all the delayed tasks that ...
6 years, 3 months ago (2014-09-10 15:49:43 UTC) #53
Xi Han
https://codereview.chromium.org/528363002/diff/480001/components/web_cache/browser/web_cache_manager.h File components/web_cache/browser/web_cache_manager.h (right): https://codereview.chromium.org/528363002/diff/480001/components/web_cache/browser/web_cache_manager.h#newcode88 components/web_cache/browser/web_cache_manager.h:88: // function that guaranty all the delayed tasks that ...
6 years, 3 months ago (2014-09-10 17:24:37 UTC) #54
erikwright (departed)
https://codereview.chromium.org/528363002/diff/500001/components/web_cache/browser/web_cache_manager.h File components/web_cache/browser/web_cache_manager.h (right): https://codereview.chromium.org/528363002/diff/500001/components/web_cache/browser/web_cache_manager.h#newcode32 components/web_cache/browser/web_cache_manager.h:32: FRIEND_TEST_ALL_PREFIXES(WebCacheManagerBrowserTest, CrashOnceOnly); nit remove this friend declaration for the ...
6 years, 3 months ago (2014-09-10 18:06:55 UTC) #55
Xi Han
https://codereview.chromium.org/528363002/diff/500001/components/web_cache/browser/web_cache_manager_unittest.cc File components/web_cache/browser/web_cache_manager_unittest.cc (right): https://codereview.chromium.org/528363002/diff/500001/components/web_cache/browser/web_cache_manager_unittest.cc#newcode315 components/web_cache/browser/web_cache_manager_unittest.cc:315: TEST_F(WebCacheManagerTest, On 2014/09/10 18:06:55, erikwright wrote: > Add a ...
6 years, 3 months ago (2014-09-11 13:52:15 UTC) #58
erikwright (departed)
LGTM.
6 years, 3 months ago (2014-09-11 13:59:36 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patchset/528363002/560001
6 years, 3 months ago (2014-09-11 16:58:59 UTC) #61
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/10355)
6 years, 3 months ago (2014-09-11 17:40:24 UTC) #65
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patchset/528363002/560001
6 years, 3 months ago (2014-09-11 18:09:20 UTC) #67
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/10383)
6 years, 3 months ago (2014-09-11 18:26:52 UTC) #69
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patchset/528363002/600001
6 years, 3 months ago (2014-09-11 19:33:29 UTC) #72
commit-bot: I haz the power
Committed patchset #16 (id:600001) as f65e88815a39894cdeaab8fb4e8bb5a23084f130
6 years, 3 months ago (2014-09-11 22:03:17 UTC) #73
commit-bot: I haz the power
Patchset 16 (id:??) landed as https://crrev.com/149b92db00bc1deab22599e7d3da3fc8be2c0d8b Cr-Commit-Position: refs/heads/master@{#294475}
6 years, 3 months ago (2014-09-11 22:31:00 UTC) #74
Lei Zhang
https://codereview.chromium.org/528363002/diff/600001/components/web_cache/OWNERS File components/web_cache/OWNERS (right): https://codereview.chromium.org/528363002/diff/600001/components/web_cache/OWNERS#newcode1 components/web_cache/OWNERS:1: # Reviewers: This is weird. It looks like you ...
6 years, 3 months ago (2014-09-15 18:24:31 UTC) #76
Xi Han
I checked the WebCacheManager but there isn't a specified OWNERS of this file. So I ...
6 years, 3 months ago (2014-09-15 18:27:45 UTC) #77
Fady Samuel
Try git blame on the files? On Mon, Sep 15, 2014 at 2:27 PM, <hanxi@chromium.org> ...
6 years, 3 months ago (2014-09-15 18:28:24 UTC) #78
Lei Zhang
On 2014/09/15 18:27:45, hanxi wrote: > I checked the WebCacheManager but there isn't a specified ...
6 years, 3 months ago (2014-09-15 18:43:29 UTC) #79
erikwright (departed)
6 years, 3 months ago (2014-09-15 18:49:52 UTC) #80
thestig@: Thanks for commenting on this. I'll keep it in mind for future
componentization CLs.

On Mon, Sep 15, 2014 at 2:43 PM, <thestig@chromium.org> wrote:

> On 2014/09/15 18:27:45, hanxi wrote:
>
>> I checked the WebCacheManager but there isn't a specified OWNERS of this
>> file.
>> So I trace back all the way up till the OWNER file of chrome. Do you have
>> any
>> suggestion how to add OWNERS in such case?
>>
>
> By this logic, I will eventually own a good portion of components/ by
> default
> due to chrome -> components refactorings.
>
> http://www.chromium.org/developers/owners-files#TOC-
> Who-should-be-in-an-OWNERS-file-
> says: "Only the people who are actively investing energy in the
> improvement of a
> directory should be listed as OWNERS."
>
> Consider doing some code archaeology and figure out:
> - Who is a stakeholder in this code?
> - Who knows this code well?
>
> All I can tell you is I (likely) have never seen nor touched this code.
>
> https://codereview.chromium.org/528363002/
>

To unsubscribe from this group and stop receiving emails from it, send an email
to chromium-reviews+unsubscribe@chromium.org.

Powered by Google App Engine
This is Rietveld 408576698