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

Side by Side Diff: third_party/WebKit/Source/core/loader/EmptyClients.h

Issue 2883033003: Propagate inert state to OOPIFs when a modal dialog is active (Closed)
Patch Set: Set Frame's inert bit on style calculation Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org)
3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 void Reload(FrameLoadType, ClientRedirectPolicy) override {} 462 void Reload(FrameLoadType, ClientRedirectPolicy) override {}
463 unsigned BackForwardLength() override { return 0; } 463 unsigned BackForwardLength() override { return 0; }
464 void ForwardPostMessage(MessageEvent*, 464 void ForwardPostMessage(MessageEvent*,
465 PassRefPtr<SecurityOrigin> target, 465 PassRefPtr<SecurityOrigin> target,
466 LocalFrame* source_frame) const override {} 466 LocalFrame* source_frame) const override {}
467 void FrameRectsChanged(const IntRect& frame_rect) override {} 467 void FrameRectsChanged(const IntRect& frame_rect) override {}
468 void UpdateRemoteViewportIntersection( 468 void UpdateRemoteViewportIntersection(
469 const IntRect& viewport_intersection) override {} 469 const IntRect& viewport_intersection) override {}
470 void AdvanceFocus(WebFocusType, LocalFrame* source) override {} 470 void AdvanceFocus(WebFocusType, LocalFrame* source) override {}
471 void VisibilityChanged(bool visible) override {} 471 void VisibilityChanged(bool visible) override {}
472 void SetIsInert(bool) override {}
472 473
473 // FrameClient implementation. 474 // FrameClient implementation.
474 bool InShadowTree() const override { return false; } 475 bool InShadowTree() const override { return false; }
475 void WillBeDetached() override {} 476 void WillBeDetached() override {}
476 void Detached(FrameDetachType) override {} 477 void Detached(FrameDetachType) override {}
477 Frame* Opener() const override { return nullptr; } 478 Frame* Opener() const override { return nullptr; }
478 void SetOpener(Frame*) override {} 479 void SetOpener(Frame*) override {}
479 Frame* Parent() const override { return nullptr; } 480 Frame* Parent() const override { return nullptr; }
480 Frame* Top() const override { return nullptr; } 481 Frame* Top() const override { return nullptr; }
481 Frame* NextSibling() const override { return nullptr; } 482 Frame* NextSibling() const override { return nullptr; }
482 Frame* FirstChild() const override { return nullptr; } 483 Frame* FirstChild() const override { return nullptr; }
483 void FrameFocused() const override {} 484 void FrameFocused() const override {}
484 }; 485 };
485 486
486 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&); 487 CORE_EXPORT void FillWithEmptyClients(Page::PageClients&);
487 488
488 } // namespace blink 489 } // namespace blink
489 490
490 #endif // EmptyClients_h 491 #endif // EmptyClients_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698