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

Side by Side Diff: Source/core/dom/Document.cpp

Issue 132333018: Revert of Reland r165710 "Replace RenderFullScreen with top layer" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/resolver/StyleResolver.cpp ('k') | Source/core/dom/FullscreenElementStack.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 4781 matching lines...) Expand 10 before | Expand all | Expand 10 after
4792 if (!element->isInTopLayer()) 4792 if (!element->isInTopLayer())
4793 return; 4793 return;
4794 size_t position = m_topLayerElements.find(element); 4794 size_t position = m_topLayerElements.find(element);
4795 ASSERT(position != kNotFound); 4795 ASSERT(position != kNotFound);
4796 m_topLayerElements.remove(position); 4796 m_topLayerElements.remove(position);
4797 element->setIsInTopLayer(false); 4797 element->setIsInTopLayer(false);
4798 } 4798 }
4799 4799
4800 HTMLDialogElement* Document::activeModalDialog() const 4800 HTMLDialogElement* Document::activeModalDialog() const
4801 { 4801 {
4802 Vector<RefPtr<Element> >::const_reverse_iterator end = m_topLayerElements.re nd(); 4802 if (m_topLayerElements.isEmpty())
4803 for (Vector<RefPtr<Element> >::const_reverse_iterator it = m_topLayerElement s.rbegin(); it != end; ++it) { 4803 return 0;
4804 if (!it->get()->hasTagName(dialogTag)) 4804 return toHTMLDialogElement(m_topLayerElements.last().get());
4805 continue;
4806 HTMLDialogElement* dialog = toHTMLDialogElement(it->get());
4807 if (dialog->isModal())
4808 return dialog;
4809 }
4810 return 0;
4811 } 4805 }
4812 4806
4813 void Document::webkitExitPointerLock() 4807 void Document::webkitExitPointerLock()
4814 { 4808 {
4815 if (!page()) 4809 if (!page())
4816 return; 4810 return;
4817 if (Element* target = page()->pointerLockController().element()) { 4811 if (Element* target = page()->pointerLockController().element()) {
4818 if (target->document() != this) 4812 if (target->document() != this)
4819 return; 4813 return;
4820 } 4814 }
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
5325 if (!page->focusController().isActive() || !page->focusController().isFocuse d()) 5319 if (!page->focusController().isActive() || !page->focusController().isFocuse d())
5326 return false; 5320 return false;
5327 if (Frame* focusedFrame = page->focusController().focusedFrame()) { 5321 if (Frame* focusedFrame = page->focusController().focusedFrame()) {
5328 if (focusedFrame->tree().isDescendantOf(frame())) 5322 if (focusedFrame->tree().isDescendantOf(frame()))
5329 return true; 5323 return true;
5330 } 5324 }
5331 return false; 5325 return false;
5332 } 5326 }
5333 5327
5334 } // namespace WebCore 5328 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/resolver/StyleResolver.cpp ('k') | Source/core/dom/FullscreenElementStack.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698