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

Issue 10837296: Fix a bug where the inspector would not keep event pages alive. (Closed)

Created:
8 years, 4 months ago by Matt Perry
Modified:
8 years, 4 months ago
CC:
chromium-reviews, joi+watch-content_chromium.org, Aaron Boodman, mihaip-chromium-reviews_chromium.org, jam, darin-cc_chromium.org
Visibility:
Public.

Description

Fix a bug where the inspector would not keep event pages alive. The notification that an inspector window was opened was not always being sent. BUG=143284 TBR=creis@chromium.org,pkasting@chromium.org Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=152733

Patch Set 1 #

Patch Set 2 : rm debug logs #

Total comments: 2

Patch Set 3 : notification #

Total comments: 9

Patch Set 4 : yurys #

Unified diffs Side-by-side diffs Delta from patch set Stats (+45 lines, -40 lines) Patch
M chrome/browser/extensions/extension_process_manager.cc View 1 2 3 chunks +7 lines, -5 lines 0 comments Download
M chrome/browser/ui/cocoa/extensions/extension_popup_controller.mm View 1 2 4 chunks +4 lines, -4 lines 0 comments Download
M chrome/browser/ui/gtk/extensions/extension_popup_gtk.cc View 1 2 3 chunks +4 lines, -4 lines 0 comments Download
M chrome/browser/ui/views/extensions/extension_popup.cc View 1 2 3 chunks +4 lines, -4 lines 0 comments Download
M content/browser/debugger/devtools_agent_host.h View 1 2 3 2 chunks +3 lines, -3 lines 0 comments Download
M content/browser/debugger/devtools_agent_host.cc View 1 2 3 1 chunk +3 lines, -0 lines 0 comments Download
M content/browser/debugger/devtools_manager_impl.cc View 1 2 1 chunk +0 lines, -2 lines 0 comments Download
M content/browser/debugger/render_view_devtools_agent_host.h View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M content/browser/debugger/render_view_devtools_agent_host.cc View 1 2 3 1 chunk +10 lines, -10 lines 0 comments Download
M content/browser/debugger/worker_devtools_manager.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M content/public/browser/notification_types.h View 1 2 3 1 chunk +6 lines, -6 lines 0 comments Download

Messages

Total messages: 19 (0 generated)
Matt Perry
8 years, 4 months ago (2012-08-16 23:09:24 UTC) #1
yurys
http://codereview.chromium.org/10837296/diff/3001/content/browser/debugger/devtools_agent_host.h File content/browser/debugger/devtools_agent_host.h (right): http://codereview.chromium.org/10837296/diff/3001/content/browser/debugger/devtools_agent_host.h#newcode38 content/browser/debugger/devtools_agent_host.h:38: virtual void NotifyClientOpening() = 0; Is there any reason ...
8 years, 4 months ago (2012-08-17 07:05:01 UTC) #2
Matt Perry
http://codereview.chromium.org/10837296/diff/3001/content/browser/debugger/devtools_agent_host.h File content/browser/debugger/devtools_agent_host.h (right): http://codereview.chromium.org/10837296/diff/3001/content/browser/debugger/devtools_agent_host.h#newcode38 content/browser/debugger/devtools_agent_host.h:38: virtual void NotifyClientOpening() = 0; On 2012/08/17 07:05:01, Yury ...
8 years, 4 months ago (2012-08-17 23:11:46 UTC) #3
yurys
On 2012/08/17 23:11:46, Matt Perry wrote: > http://codereview.chromium.org/10837296/diff/3001/content/browser/debugger/devtools_agent_host.h > File content/browser/debugger/devtools_agent_host.h (right): > > http://codereview.chromium.org/10837296/diff/3001/content/browser/debugger/devtools_agent_host.h#newcode38 ...
8 years, 4 months ago (2012-08-20 07:44:13 UTC) #4
Matt Perry
On 2012/08/20 07:44:13, Yury Semikhatsky wrote: > On 2012/08/17 23:11:46, Matt Perry wrote: > > ...
8 years, 4 months ago (2012-08-20 18:21:53 UTC) #5
Matt Perry
On 2012/08/20 18:21:53, Matt Perry wrote: > On 2012/08/20 07:44:13, Yury Semikhatsky wrote: > > ...
8 years, 4 months ago (2012-08-20 19:38:41 UTC) #6
yurys
On 2012/08/20 19:38:41, Matt Perry wrote: > On 2012/08/20 18:21:53, Matt Perry wrote: > > ...
8 years, 4 months ago (2012-08-21 09:39:57 UTC) #7
Matt Perry
On 2012/08/21 09:39:57, Yury Semikhatsky wrote: > On 2012/08/20 19:38:41, Matt Perry wrote: > > ...
8 years, 4 months ago (2012-08-21 18:50:04 UTC) #8
Matt Perry
OK, new version with the notifications moved to Attach/Detach. I also renamed them to reflect ...
8 years, 4 months ago (2012-08-21 19:34:45 UTC) #9
yurys
A few comments but I like the new approach. http://codereview.chromium.org/10837296/diff/13/chrome/browser/debugger/devtools_window.cc File chrome/browser/debugger/devtools_window.cc (right): http://codereview.chromium.org/10837296/diff/13/chrome/browser/debugger/devtools_window.cc#newcode646 chrome/browser/debugger/devtools_window.cc:646: ...
8 years, 4 months ago (2012-08-21 19:52:55 UTC) #10
yurys
http://codereview.chromium.org/10837296/diff/13/content/public/browser/notification_types.h File content/public/browser/notification_types.h (right): http://codereview.chromium.org/10837296/diff/13/content/public/browser/notification_types.h#newcode166 content/public/browser/notification_types.h:166: // Indicates that a devtools window is opening. The ...
8 years, 4 months ago (2012-08-21 20:08:54 UTC) #11
Matt Perry
http://codereview.chromium.org/10837296/diff/13/chrome/browser/debugger/devtools_window.cc File chrome/browser/debugger/devtools_window.cc (right): http://codereview.chromium.org/10837296/diff/13/chrome/browser/debugger/devtools_window.cc#newcode646 chrome/browser/debugger/devtools_window.cc:646: if (!window->is_docked() || do_open) { On 2012/08/21 19:52:55, Yury ...
8 years, 4 months ago (2012-08-21 20:13:46 UTC) #12
yurys
lgtm
8 years, 4 months ago (2012-08-21 20:44:26 UTC) #13
Matt Perry
pkasting: browser/ui OWNERS (just a rename) creis: content OWNERS (ditto)
8 years, 4 months ago (2012-08-21 21:12:22 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mpcomplete@chromium.org/10837296/13002
8 years, 4 months ago (2012-08-21 21:12:39 UTC) #15
Charlie Reis
LGTM
8 years, 4 months ago (2012-08-21 22:24:54 UTC) #16
commit-bot: I haz the power
Try job failure for 10837296-13002 (retry) on mac_rel for step "browser_tests". It's a second try, ...
8 years, 4 months ago (2012-08-21 23:11:20 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mpcomplete@chromium.org/10837296/13002
8 years, 4 months ago (2012-08-21 23:16:56 UTC) #18
commit-bot: I haz the power
8 years, 4 months ago (2012-08-22 04:15:15 UTC) #19
Change committed as 152733

Powered by Google App Engine
This is Rietveld 408576698