mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Remove explicit tracking of guest view frames
This is no longer required now that we have implicit exclusion of certain frame types including guest view frames. Rename GuestView to ExcludedView in the renderer process.
This commit is contained in:
@@ -702,18 +702,14 @@ cef_color_variant_t CefRequestContextImpl::GetChromeColorSchemeVariant() {
|
||||
|
||||
void CefRequestContextImpl::OnRenderFrameCreated(
|
||||
const content::GlobalRenderFrameHostId& global_id,
|
||||
bool is_main_frame,
|
||||
bool is_guest_view) {
|
||||
browser_context_->OnRenderFrameCreated(this, global_id, is_main_frame,
|
||||
is_guest_view);
|
||||
bool is_main_frame) {
|
||||
browser_context_->OnRenderFrameCreated(this, global_id, is_main_frame);
|
||||
}
|
||||
|
||||
void CefRequestContextImpl::OnRenderFrameDeleted(
|
||||
const content::GlobalRenderFrameHostId& global_id,
|
||||
bool is_main_frame,
|
||||
bool is_guest_view) {
|
||||
browser_context_->OnRenderFrameDeleted(this, global_id, is_main_frame,
|
||||
is_guest_view);
|
||||
bool is_main_frame) {
|
||||
browser_context_->OnRenderFrameDeleted(this, global_id, is_main_frame);
|
||||
}
|
||||
|
||||
// static
|
||||
|
Reference in New Issue
Block a user