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

Issue 261013005: BrowserPlugin: Move CreateGuest to chrome (Closed)

Created:
6 years, 7 months ago by Fady Samuel
Modified:
6 years, 7 months ago
Reviewers:
lazyboy, jam
CC:
chromium-reviews, darin-cc_chromium.org, nasko+codewatch_chromium.org, jam, creis+watch_chromium.org, miu+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@guestview_manager_simplify_api
Visibility:
Public.

Description

BrowserPlugin: Move CreateGuest to chrome BUG=364141, 330264 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=269565

Patch Set 1 #

Total comments: 2

Patch Set 2 : Removed AddGuest/RemoveGuest from content API! w00t! #

Total comments: 10

Patch Set 3 : Updated #

Patch Set 4 : Cleanup #

Patch Set 5 : Addressed comments #

Patch Set 6 : Removed unnecessary includes #

Total comments: 6

Patch Set 7 : Addressed John's comments #

Patch Set 8 : Merge with ToT #

Patch Set 9 : Remove RenderProcessHost change #

Patch Set 10 : Add string include #

Patch Set 11 : Fixed content_browsertests #

Patch Set 12 : Fixed Android build (hopefully) #

Patch Set 13 : Fixed include #

Patch Set 14 : Fixed content_browsertests after a change #

Unified diffs Side-by-side diffs Delta from patch set Stats (+269 lines, -180 lines) Patch
M chrome/browser/android/content_view_util.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -2 lines 0 comments Download
M chrome/browser/guest_view/guest_view_base.cc View 1 2 chunks +5 lines, -0 lines 0 comments Download
M chrome/browser/guest_view/guest_view_manager.h View 1 2 3 4 5 6 1 chunk +15 lines, -5 lines 0 comments Download
M chrome/browser/guest_view/guest_view_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 4 chunks +73 lines, -15 lines 0 comments Download
M content/browser/browser_plugin/browser_plugin_embedder.cc View 1 2 3 4 5 6 1 chunk +5 lines, -4 lines 0 comments Download
M content/browser/browser_plugin/browser_plugin_guest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +5 lines, -7 lines 0 comments Download
M content/browser/browser_plugin/browser_plugin_guest_manager.h View 1 2 3 4 5 6 2 chunks +3 lines, -13 lines 0 comments Download
M content/browser/browser_plugin/browser_plugin_guest_manager.cc View 1 2 3 4 5 6 7 4 chunks +12 lines, -69 lines 0 comments Download
M content/browser/browser_plugin/test_browser_plugin_guest_manager.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +8 lines, -4 lines 0 comments Download
M content/browser/browser_plugin/test_browser_plugin_guest_manager.cc View 1 2 3 4 5 6 7 8 9 10 2 chunks +14 lines, -4 lines 0 comments Download
M content/browser/browser_plugin/test_guest_manager_delegate.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +10 lines, -5 lines 0 comments Download
M content/browser/browser_plugin/test_guest_manager_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +65 lines, -0 lines 0 comments Download
M content/browser/web_contents/web_contents_impl.h View 1 2 3 4 1 chunk +0 lines, -7 lines 0 comments Download
M content/browser/web_contents/web_contents_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +13 lines, -23 lines 0 comments Download
M content/public/browser/browser_plugin_guest_manager_delegate.h View 1 2 3 4 5 6 7 8 9 3 chunks +14 lines, -17 lines 0 comments Download
M content/public/browser/browser_plugin_guest_manager_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +11 lines, -5 lines 0 comments Download
M content/public/browser/web_contents.h View 1 2 3 4 5 6 3 chunks +10 lines, -0 lines 0 comments Download
M content/public/browser/web_contents.cc View 2 chunks +5 lines, -0 lines 0 comments Download

Messages

Total messages: 38 (0 generated)
Fady Samuel
Another content/public cleanup! Yay!
6 years, 7 months ago (2014-05-02 02:05:37 UTC) #1
Fady Samuel
6 years, 7 months ago (2014-05-02 18:19:01 UTC) #2
lazyboy
https://chromiumcodereview.appspot.com/261013005/diff/1/content/browser/browser_plugin/browser_plugin_guest_manager.cc File content/browser/browser_plugin/browser_plugin_guest_manager.cc (right): https://chromiumcodereview.appspot.com/261013005/diff/1/content/browser/browser_plugin/browser_plugin_guest_manager.cc#newcode17 content/browser/browser_plugin/browser_plugin_guest_manager.cc:17: #include "content/public/browser/render_process_host.h" Remove this, no longer needed. https://chromiumcodereview.appspot.com/261013005/diff/1/content/browser/browser_plugin/browser_plugin_guest_manager.cc#newcode23 content/browser/browser_plugin/browser_plugin_guest_manager.cc:23: ...
6 years, 7 months ago (2014-05-02 19:52:52 UTC) #3
Fady Samuel
jam@: Please review content/public lazyboy@: Please take another look. https://codereview.chromium.org/261013005/diff/20001/chrome/browser/guest_view/guest_view_manager.cc File chrome/browser/guest_view/guest_view_manager.cc (right): https://codereview.chromium.org/261013005/diff/20001/chrome/browser/guest_view/guest_view_manager.cc#newcode136 chrome/browser/guest_view/guest_view_manager.cc:136: ...
6 years, 7 months ago (2014-05-06 20:02:48 UTC) #4
lazyboy
lgtm
6 years, 7 months ago (2014-05-06 21:59:13 UTC) #5
jam
https://codereview.chromium.org/261013005/diff/100001/content/browser/web_contents/web_contents_impl.cc File content/browser/web_contents/web_contents_impl.cc (right): https://codereview.chromium.org/261013005/diff/100001/content/browser/web_contents/web_contents_impl.cc#newcode430 content/browser/web_contents/web_contents_impl.cc:430: WebContentsImpl* WebContentsImpl::CreateWithOpener( what is the callstack when this method ...
6 years, 7 months ago (2014-05-06 23:43:53 UTC) #6
Fady Samuel
PTAL https://codereview.chromium.org/261013005/diff/100001/content/browser/web_contents/web_contents_impl.cc File content/browser/web_contents/web_contents_impl.cc (right): https://codereview.chromium.org/261013005/diff/100001/content/browser/web_contents/web_contents_impl.cc#newcode430 content/browser/web_contents/web_contents_impl.cc:430: WebContentsImpl* WebContentsImpl::CreateWithOpener( On 2014/05/06 23:43:53, jam wrote: > ...
6 years, 7 months ago (2014-05-07 00:07:46 UTC) #7
jam
lgtm
6 years, 7 months ago (2014-05-07 00:17:00 UTC) #8
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 7 months ago (2014-05-07 00:17:39 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/261013005/120001
6 years, 7 months ago (2014-05-07 00:21:21 UTC) #10
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). Please consider checking whether the failures are ...
6 years, 7 months ago (2014-05-07 06:25:40 UTC) #11
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #2). Please consider checking whether the failures are ...
6 years, 7 months ago (2014-05-07 12:32:01 UTC) #12
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 7 months ago (2014-05-07 12:37:02 UTC) #13
commit-bot: I haz the power
Try jobs failed on following builders: android_chromium_gn_compile_rel on tryserver.chromium android_clang_dbg on tryserver.chromium ios_dbg_simulator on tryserver.chromium ...
6 years, 7 months ago (2014-05-07 12:37:02 UTC) #14
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 7 months ago (2014-05-07 14:47:12 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/261013005/120001
6 years, 7 months ago (2014-05-07 14:49:29 UTC) #16
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 7 months ago (2014-05-07 15:57:05 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/261013005/160001
6 years, 7 months ago (2014-05-07 16:00:11 UTC) #18
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 7 months ago (2014-05-07 18:28:33 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/261013005/190001
6 years, 7 months ago (2014-05-07 18:31:16 UTC) #20
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 7 months ago (2014-05-07 19:17:14 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/261013005/210001
6 years, 7 months ago (2014-05-07 19:20:33 UTC) #22
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 7 months ago (2014-05-07 22:08:25 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/261013005/230001
6 years, 7 months ago (2014-05-07 22:09:14 UTC) #24
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). Please consider checking whether the failures are ...
6 years, 7 months ago (2014-05-08 03:37:11 UTC) #25
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 7 months ago (2014-05-08 03:59:01 UTC) #26
commit-bot: I haz the power
Try jobs failed on following builders: android_dbg_triggered_tests on tryserver.chromium
6 years, 7 months ago (2014-05-08 03:59:02 UTC) #27
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 7 months ago (2014-05-08 14:07:48 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/261013005/230001
6 years, 7 months ago (2014-05-08 14:11:23 UTC) #29
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). Please consider checking whether the failures are ...
6 years, 7 months ago (2014-05-09 03:38:11 UTC) #30
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 7 months ago (2014-05-09 06:08:16 UTC) #31
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/win_chromium_rel/builds/14080)
6 years, 7 months ago (2014-05-09 06:08:17 UTC) #32
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 7 months ago (2014-05-09 11:29:58 UTC) #33
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/261013005/230001
6 years, 7 months ago (2014-05-09 11:31:53 UTC) #34
Fady Samuel
The CQ bit was checked by fsamuel@chromium.org
6 years, 7 months ago (2014-05-09 17:30:10 UTC) #35
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/fsamuel@chromium.org/261013005/250001
6 years, 7 months ago (2014-05-09 17:31:01 UTC) #36
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). Please consider checking whether the failures are ...
6 years, 7 months ago (2014-05-09 22:12:26 UTC) #37
commit-bot: I haz the power
6 years, 7 months ago (2014-05-10 11:50:13 UTC) #38
Message was sent while issue was closed.
Change committed as 269565

Powered by Google App Engine
This is Rietveld 408576698