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

Issue 497843002: GuestViews should be able to specify task manager entries (Closed)

Created:
6 years, 4 months ago by Fady Samuel
Modified:
6 years, 3 months ago
CC:
chromium-reviews, chromium-apps-reviews_chromium.org, extensions-reviews_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

GuestViews should be able to specify task manager entries BUG=406575 TBR=cpu@chromium.org for changes to *.grd Committed: https://crrev.com/99492bedc3bd5ac3a26b12fbf7599a55086a998e Cr-Commit-Position: refs/heads/master@{#292312}

Patch Set 1 #

Total comments: 8

Patch Set 2 : Force derived types to come up with a task name #

Total comments: 5

Patch Set 3 : Updated #

Patch Set 4 : ccleanup #

Patch Set 5 : More cleanup #

Total comments: 7

Patch Set 6 : Cleanup #

Patch Set 7 : Removed GetTitle #

Total comments: 2

Patch Set 8 : Rebased #

Patch Set 9 : Cleanup #

Patch Set 10 : Fixed browser_tests #

Patch Set 11 : Fixed Mac build #

Patch Set 12 : Fixed browser_tests #

Patch Set 13 : Added DEPS #

Unified diffs Side-by-side diffs Delta from patch set Stats (+67 lines, -25 lines) Patch
M chrome/app/generated_resources.grd View 1 chunk +0 lines, -3 lines 0 comments Download
A chrome/browser/guest_view/extension_options/DEPS View 1 2 3 4 5 11 12 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/guest_view/extension_options/extension_options_guest.h View 1 2 3 2 chunks +2 lines, -1 line 0 comments Download
M chrome/browser/guest_view/extension_options/extension_options_guest.cc View 1 2 3 4 5 6 7 8 3 chunks +9 lines, -4 lines 0 comments Download
A chrome/browser/task_manager/DEPS View 1 2 3 4 5 11 12 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/task_manager/guest_information.cc View 1 2 3 4 5 6 4 chunks +12 lines, -7 lines 0 comments Download
M chrome/browser/task_manager/task_manager_browsertest_util.cc View 1 2 3 4 5 6 7 8 9 11 2 chunks +4 lines, -2 lines 0 comments Download
M extensions/browser/guest_view/app_view/app_view_guest.h View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M extensions/browser/guest_view/app_view/app_view_guest.cc View 1 2 3 4 5 6 7 2 chunks +6 lines, -1 line 0 comments Download
M extensions/browser/guest_view/guest_view_base.h View 1 2 3 4 5 6 1 chunk +6 lines, -1 line 0 comments Download
M extensions/browser/guest_view/web_view/web_view_guest.h View 1 2 3 4 5 6 7 1 chunk +2 lines, -1 line 0 comments Download
M extensions/browser/guest_view/web_view/web_view_guest.cc View 1 2 3 4 5 6 7 8 9 10 2 chunks +6 lines, -1 line 0 comments Download
M extensions/browser/guest_view/web_view/web_view_guest_delegate.h View 1 2 3 4 5 6 7 2 chunks +3 lines, -2 lines 0 comments Download
M extensions/extensions_strings.grd View 1 2 3 4 5 6 7 8 9 10 1 chunk +9 lines, -1 line 0 comments Download

Messages

Total messages: 60 (0 generated)
Fady Samuel
creis@: please review chrome/browser/task_manager/guest_information.cc lfg@: please review app_view changes hanxi@: please review web_view changes ericzeng@: ...
6 years, 4 months ago (2014-08-22 21:06:27 UTC) #1
Fady Samuel
+cpu@ for chrome/app/generated_resources.grd
6 years, 4 months ago (2014-08-22 21:08:27 UTC) #2
Charlie Reis
https://codereview.chromium.org/497843002/diff/1/chrome/browser/task_manager/guest_information.cc File chrome/browser/task_manager/guest_information.cc (right): https://codereview.chromium.org/497843002/diff/1/chrome/browser/task_manager/guest_information.cc#newcode71 chrome/browser/task_manager/guest_information.cc:71: GetTaskName(); Who determines this value? I'm skeptical about allowing ...
6 years, 4 months ago (2014-08-22 21:11:43 UTC) #3
ericzeng
extension_options lgtm
6 years, 4 months ago (2014-08-22 21:15:22 UTC) #4
Fady Samuel
https://codereview.chromium.org/497843002/diff/1/chrome/browser/task_manager/guest_information.cc File chrome/browser/task_manager/guest_information.cc (right): https://codereview.chromium.org/497843002/diff/1/chrome/browser/task_manager/guest_information.cc#newcode71 chrome/browser/task_manager/guest_information.cc:71: GetTaskName(); On 2014/08/22 21:11:43, Charlie Reis wrote: > Who ...
6 years, 4 months ago (2014-08-22 21:15:31 UTC) #5
Fady Samuel
https://codereview.chromium.org/497843002/diff/1/chrome/browser/task_manager/guest_information.cc File chrome/browser/task_manager/guest_information.cc (right): https://codereview.chromium.org/497843002/diff/1/chrome/browser/task_manager/guest_information.cc#newcode71 chrome/browser/task_manager/guest_information.cc:71: GetTaskName(); On 2014/08/22 21:15:31, Fady Samuel wrote: > On ...
6 years, 4 months ago (2014-08-22 21:16:24 UTC) #6
Charlie Reis
https://codereview.chromium.org/497843002/diff/1/chrome/browser/guest_view/web_view/web_view_guest.cc File chrome/browser/guest_view/web_view/web_view_guest.cc (right): https://codereview.chromium.org/497843002/diff/1/chrome/browser/guest_view/web_view/web_view_guest.cc#newcode196 chrome/browser/guest_view/web_view/web_view_guest.cc:196: return base::string16(); Would this show an empty row in ...
6 years, 4 months ago (2014-08-22 21:23:20 UTC) #7
lfg
extensions/browser/guest_view/app_view/* lgtm
6 years, 4 months ago (2014-08-22 21:25:12 UTC) #8
cpu_(ooo_6.6-7.5)
grd are to be TBR.
6 years, 4 months ago (2014-08-22 21:29:19 UTC) #9
Xi Han
web_view lgtm.
6 years, 4 months ago (2014-08-22 21:36:58 UTC) #10
Fady Samuel
https://codereview.chromium.org/497843002/diff/1/chrome/browser/task_manager/guest_information.cc File chrome/browser/task_manager/guest_information.cc (right): https://codereview.chromium.org/497843002/diff/1/chrome/browser/task_manager/guest_information.cc#newcode71 chrome/browser/task_manager/guest_information.cc:71: GetTaskName(); On 2014/08/22 21:23:20, Charlie Reis wrote: > On ...
6 years, 4 months ago (2014-08-22 21:48:54 UTC) #11
Fady Samuel
PTAL Charlie: Derived types are now FORCED to come up with a task name.
6 years, 4 months ago (2014-08-22 21:57:15 UTC) #12
Charlie Reis
https://codereview.chromium.org/497843002/diff/1/chrome/browser/task_manager/guest_information.cc File chrome/browser/task_manager/guest_information.cc (right): https://codereview.chromium.org/497843002/diff/1/chrome/browser/task_manager/guest_information.cc#newcode71 chrome/browser/task_manager/guest_information.cc:71: GetTaskName(); On 2014/08/22 21:48:54, Fady Samuel wrote: > On ...
6 years, 4 months ago (2014-08-22 21:57:48 UTC) #13
Charlie Reis
On 2014/08/22 21:57:15, Fady Samuel wrote: > PTAL Charlie: Derived types are now FORCED to ...
6 years, 4 months ago (2014-08-22 22:00:45 UTC) #14
Fady Samuel
Sorry, what I mean by that is GuestViewBase::GetTaskName is now pure virtual. The derived type ...
6 years, 4 months ago (2014-08-22 22:12:44 UTC) #15
Charlie Reis
https://codereview.chromium.org/497843002/diff/1/chrome/browser/task_manager/guest_information.cc File chrome/browser/task_manager/guest_information.cc (right): https://codereview.chromium.org/497843002/diff/1/chrome/browser/task_manager/guest_information.cc#newcode71 chrome/browser/task_manager/guest_information.cc:71: GetTaskName(); On 2014/08/22 21:57:47, Charlie Reis wrote: > Could ...
6 years, 4 months ago (2014-08-22 22:40:02 UTC) #16
Fady Samuel
PTAL Charlie. I've separated GetTaskPrefix and GetTaskTitle into two separate virtual methods in GuestViewBase: GetTaskPrefix ...
6 years, 3 months ago (2014-08-25 18:44:49 UTC) #17
Fady Samuel
On 2014/08/25 18:44:49, Fady Samuel wrote: > PTAL Charlie. I've separated GetTaskPrefix and GetTaskTitle into ...
6 years, 3 months ago (2014-08-25 18:58:18 UTC) #18
Charlie Reis
This is much closer, thanks! I may be missing something, but I still don't understand ...
6 years, 3 months ago (2014-08-25 20:25:41 UTC) #19
Fady Samuel
PTAL Charlie. I moved the IDS strings to the extensions module which significantly reduces complexity. ...
6 years, 3 months ago (2014-08-25 23:05:52 UTC) #20
Charlie Reis
Sorry, I must be missing something. https://codereview.chromium.org/497843002/diff/80001/chrome/browser/task_manager/guest_information.cc File chrome/browser/task_manager/guest_information.cc (right): https://codereview.chromium.org/497843002/diff/80001/chrome/browser/task_manager/guest_information.cc#newcode75 chrome/browser/task_manager/guest_information.cc:75: guest->GetTaskTitle()); On 2014/08/25 ...
6 years, 3 months ago (2014-08-25 23:47:22 UTC) #21
Fady Samuel
PTAL Charlie. Got rid of GuestViewBase::GetTitle.
6 years, 3 months ago (2014-08-26 15:14:30 UTC) #22
Charlie Reis
Great! This LGTM. You'll probably need an owner's approval, but I like where the task ...
6 years, 3 months ago (2014-08-26 16:37:42 UTC) #23
Fady Samuel
fsamuel@chromium.org changed reviewers: + sky@chromium.org
6 years, 3 months ago (2014-08-26 19:02:46 UTC) #24
Fady Samuel
+sky@ for chrome/browser/task_manager OWNER review. https://codereview.chromium.org/497843002/diff/120001/extensions/browser/guest_view/guest_view_base.cc File extensions/browser/guest_view/guest_view_base.cc (right): https://codereview.chromium.org/497843002/diff/120001/extensions/browser/guest_view/guest_view_base.cc#newcode7 extensions/browser/guest_view/guest_view_base.cc:7: #include "base/i18n/rtl.h" On 2014/08/26 ...
6 years, 3 months ago (2014-08-26 19:02:46 UTC) #25
sky
LGTM
6 years, 3 months ago (2014-08-26 20:28:11 UTC) #26
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 3 months ago (2014-08-26 20:28:52 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/497843002/160001
6 years, 3 months ago (2014-08-26 20:30:35 UTC) #28
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_gpu on tryserver.chromium.gpu ...
6 years, 3 months ago (2014-08-26 22:06:16 UTC) #29
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-26 22:16:05 UTC) #30
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_rel_swarming on tryserver.chromium.mac (http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_swarming/builds/7187)
6 years, 3 months ago (2014-08-26 22:16:06 UTC) #31
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 3 months ago (2014-08-26 22:59:14 UTC) #32
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/497843002/180001
6 years, 3 months ago (2014-08-26 23:02:13 UTC) #33
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: mac_gpu on tryserver.chromium.gpu ...
6 years, 3 months ago (2014-08-26 23:59:45 UTC) #34
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-27 00:04:19 UTC) #35
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_compile_dbg on tryserver.chromium.mac (http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_compile_dbg/builds/9671)
6 years, 3 months ago (2014-08-27 00:04:20 UTC) #36
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 3 months ago (2014-08-27 00:09:02 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/497843002/180001
6 years, 3 months ago (2014-08-27 00:11:53 UTC) #38
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: mac_gpu on tryserver.chromium.gpu ...
6 years, 3 months ago (2014-08-27 00:26:59 UTC) #39
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-27 00:38:52 UTC) #40
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_compile_dbg on tryserver.chromium.mac (http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_compile_dbg/builds/9690)
6 years, 3 months ago (2014-08-27 00:38:53 UTC) #41
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 3 months ago (2014-08-27 00:53:26 UTC) #42
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/497843002/180001
6 years, 3 months ago (2014-08-27 00:54:16 UTC) #43
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: mac_gpu on tryserver.chromium.gpu ...
6 years, 3 months ago (2014-08-27 01:12:55 UTC) #44
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-27 01:17:55 UTC) #45
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_compile_dbg on tryserver.chromium.mac (http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_compile_dbg/builds/9713)
6 years, 3 months ago (2014-08-27 01:17:56 UTC) #46
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 3 months ago (2014-08-27 21:15:49 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/497843002/200001
6 years, 3 months ago (2014-08-27 21:17:02 UTC) #48
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 3 months ago (2014-08-27 23:45:34 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/497843002/220001
6 years, 3 months ago (2014-08-27 23:46:34 UTC) #50
Fady Samuel
fsamuel@chromium.org changed reviewers: + rockot@chromium.org
6 years, 3 months ago (2014-08-28 00:18:27 UTC) #51
Fady Samuel
Ken, CHECKDEPS is failing on iOS. Any thoughts on how to fix it?
6 years, 3 months ago (2014-08-28 00:18:27 UTC) #52
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: chromium_presubmit on tryserver.chromium.linux ...
6 years, 3 months ago (2014-08-28 01:36:25 UTC) #53
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-28 01:40:30 UTC) #54
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/7209) ios_dbg_simulator on tryserver.chromium.mac (http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator/builds/9833)
6 years, 3 months ago (2014-08-28 01:40:31 UTC) #55
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 3 months ago (2014-08-28 01:58:50 UTC) #56
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/497843002/240001
6 years, 3 months ago (2014-08-28 01:59:57 UTC) #57
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: android_dbg_tests_recipe on tryserver.chromium.linux ...
6 years, 3 months ago (2014-08-28 02:56:07 UTC) #58
commit-bot: I haz the power
Committed patchset #13 (id:240001) as 182766a4e449ed580f20b0887146102688679d93
6 years, 3 months ago (2014-08-28 03:50:34 UTC) #59
commit-bot: I haz the power
6 years, 3 months ago (2014-09-10 02:57:12 UTC) #60
Message was sent while issue was closed.
Patchset 13 (id:??) landed as
https://crrev.com/99492bedc3bd5ac3a26b12fbf7599a55086a998e
Cr-Commit-Position: refs/heads/master@{#292312}

Powered by Google App Engine
This is Rietveld 408576698