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

Issue 217183004: Migrate addMessageToConsole API to RenderFrame. (Closed)

Created:
6 years, 8 months ago by mkosiba (inactive)
Modified:
6 years, 8 months ago
CC:
chromium-reviews, darin-cc_chromium.org, nasko+codewatch_chromium.org, jam, creis+watch_chromium.org, site-isolation-reviews_chromium.org
Visibility:
Public.

Description

Migrate addMessageToConsole API to RenderFrame. BUG=304341 NOTRY=true Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=261424

Patch Set 1 #

Total comments: 8

Patch Set 2 : #

Total comments: 2

Patch Set 3 : #

Patch Set 4 : rebase + fix the test_runner #

Unified diffs Side-by-side diffs Delta from patch set Stats (+150 lines, -114 lines) Patch
M content/browser/frame_host/interstitial_page_impl.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M content/browser/frame_host/interstitial_page_impl.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M content/browser/frame_host/render_frame_host_delegate.h View 1 2 2 chunks +13 lines, -0 lines 0 comments Download
M content/browser/frame_host/render_frame_host_delegate.cc View 1 2 2 chunks +14 lines, -2 lines 0 comments Download
M content/browser/frame_host/render_frame_host_impl.h View 1 1 chunk +4 lines, -0 lines 0 comments Download
M content/browser/frame_host/render_frame_host_impl.cc View 1 2 3 chunks +20 lines, -0 lines 0 comments Download
M content/browser/renderer_host/render_view_host_delegate.h View 1 2 chunks +0 lines, -9 lines 0 comments Download
M content/browser/renderer_host/render_view_host_delegate.cc View 1 chunk +0 lines, -10 lines 0 comments Download
M content/browser/renderer_host/render_view_host_impl.h View 1 2 3 1 chunk +0 lines, -4 lines 0 comments Download
M content/browser/renderer_host/render_view_host_impl.cc View 1 2 3 2 chunks +0 lines, -18 lines 0 comments Download
M content/browser/web_contents/web_contents_impl.h View 1 2 3 3 chunks +4 lines, -3 lines 0 comments Download
M content/browser/web_contents/web_contents_impl.cc View 1 2 3 1 chunk +4 lines, -0 lines 0 comments Download
M content/common/frame_messages.h View 1 2 3 1 chunk +8 lines, -0 lines 0 comments Download
M content/common/view_messages.h View 1 2 3 1 chunk +0 lines, -8 lines 0 comments Download
M content/public/renderer/render_frame_observer.h View 1 2 chunks +13 lines, -0 lines 0 comments Download
M content/renderer/render_frame_impl.h View 1 2 3 1 chunk +6 lines, -0 lines 0 comments Download
M content/renderer/render_frame_impl.cc View 1 2 3 2 chunks +57 lines, -0 lines 0 comments Download
M content/renderer/render_view_impl.h View 1 2 3 1 chunk +0 lines, -7 lines 0 comments Download
M content/renderer/render_view_impl.cc View 1 2 3 1 chunk +0 lines, -46 lines 0 comments Download
M content/shell/renderer/test_runner/WebFrameTestProxy.h View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M content/shell/renderer/test_runner/WebTestProxy.h View 1 2 3 1 chunk +0 lines, -5 lines 0 comments Download

Messages

Total messages: 31 (0 generated)
mkosiba (inactive)
PTAL this depends on https://codereview.chromium.org/217283004/
6 years, 8 months ago (2014-03-28 18:47:34 UTC) #1
nasko
Pretty close. Some comments. https://codereview.chromium.org/217183004/diff/1/content/browser/frame_host/render_frame_host_delegate.h File content/browser/frame_host/render_frame_host_delegate.h (right): https://codereview.chromium.org/217183004/diff/1/content/browser/frame_host/render_frame_host_delegate.h#newcode31 content/browser/frame_host/render_frame_host_delegate.h:31: virtual const GURL& GetURL() const; ...
6 years, 8 months ago (2014-03-28 23:05:04 UTC) #2
mkosiba (inactive)
https://codereview.chromium.org/217183004/diff/1/content/browser/frame_host/render_frame_host_delegate.h File content/browser/frame_host/render_frame_host_delegate.h (right): https://codereview.chromium.org/217183004/diff/1/content/browser/frame_host/render_frame_host_delegate.h#newcode31 content/browser/frame_host/render_frame_host_delegate.h:31: virtual const GURL& GetURL() const; On 2014/03/28 23:05:05, nasko ...
6 years, 8 months ago (2014-03-31 09:48:40 UTC) #3
nasko
https://codereview.chromium.org/217183004/diff/40001/content/browser/frame_host/render_frame_host_impl.cc File content/browser/frame_host/render_frame_host_impl.cc (right): https://codereview.chromium.org/217183004/diff/40001/content/browser/frame_host/render_frame_host_impl.cc#newcode355 content/browser/frame_host/render_frame_host_impl.cc:355: HasWebUIScheme(delegate_->GetMainFrameVisibleURL()) ? level : 0; The visible is usually ...
6 years, 8 months ago (2014-03-31 13:45:02 UTC) #4
mkosiba (inactive)
https://codereview.chromium.org/217183004/diff/40001/content/browser/frame_host/render_frame_host_impl.cc File content/browser/frame_host/render_frame_host_impl.cc (right): https://codereview.chromium.org/217183004/diff/40001/content/browser/frame_host/render_frame_host_impl.cc#newcode355 content/browser/frame_host/render_frame_host_impl.cc:355: HasWebUIScheme(delegate_->GetMainFrameVisibleURL()) ? level : 0; On 2014/03/31 13:45:02, nasko ...
6 years, 8 months ago (2014-03-31 17:36:48 UTC) #5
nasko
LGTM
6 years, 8 months ago (2014-03-31 17:38:48 UTC) #6
mkosiba (inactive)
On 2014/03/31 17:38:48, nasko wrote: > LGTM Thanks for the review!
6 years, 8 months ago (2014-04-01 11:20:30 UTC) #7
jochen (gone - plz use gerrit)
lgtm
6 years, 8 months ago (2014-04-02 09:43:17 UTC) #8
mkosiba (inactive)
The CQ bit was checked by mkosiba@chromium.org
6 years, 8 months ago (2014-04-02 10:25:25 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mkosiba@chromium.org/217183004/60001
6 years, 8 months ago (2014-04-02 10:25:36 UTC) #10
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-02 10:57:47 UTC) #11
commit-bot: I haz the power
Retried try job too often on win_rel for step(s) base_unittests, browser_tests, interactive_ui_tests, net_unittests, unit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_rel&number=292585
6 years, 8 months ago (2014-04-02 10:57:48 UTC) #12
mkosiba (inactive)
The CQ bit was checked by mkosiba@chromium.org
6 years, 8 months ago (2014-04-02 12:42:05 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mkosiba@chromium.org/217183004/80001
6 years, 8 months ago (2014-04-02 12:42:44 UTC) #14
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-02 17:22:37 UTC) #15
commit-bot: I haz the power
Retried try job too often on android_aosp for step(s) compile http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=android_aosp&number=60400
6 years, 8 months ago (2014-04-02 17:22:37 UTC) #16
mkosiba (inactive)
The CQ bit was checked by mkosiba@chromium.org
6 years, 8 months ago (2014-04-03 09:29:46 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mkosiba@chromium.org/217183004/80001
6 years, 8 months ago (2014-04-03 09:30:21 UTC) #18
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-03 10:41:45 UTC) #19
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on linux_chromium_rel
6 years, 8 months ago (2014-04-03 10:41:45 UTC) #20
mkosiba (inactive)
The CQ bit was checked by mkosiba@chromium.org
6 years, 8 months ago (2014-04-03 10:58:49 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mkosiba@chromium.org/217183004/80001
6 years, 8 months ago (2014-04-03 10:59:28 UTC) #22
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-03 11:04:16 UTC) #23
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on linux_chromium_rel
6 years, 8 months ago (2014-04-03 11:04:16 UTC) #24
mkosiba (inactive)
The CQ bit was checked by mkosiba@chromium.org
6 years, 8 months ago (2014-04-03 11:13:45 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mkosiba@chromium.org/217183004/80001
6 years, 8 months ago (2014-04-03 11:13:49 UTC) #26
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-03 14:59:20 UTC) #27
commit-bot: I haz the power
Commit queue rejected this change because the description was changed between the time the change ...
6 years, 8 months ago (2014-04-03 14:59:21 UTC) #28
mkosiba (inactive)
The CQ bit was checked by mkosiba@chromium.org
6 years, 8 months ago (2014-04-03 15:45:57 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mkosiba@chromium.org/217183004/80001
6 years, 8 months ago (2014-04-03 15:49:41 UTC) #30
commit-bot: I haz the power
6 years, 8 months ago (2014-04-03 15:55:52 UTC) #31
Message was sent while issue was closed.
Change committed as 261424

Powered by Google App Engine
This is Rietveld 408576698