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

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

Issue 1118613002: Hook up Android closed captions 'enabled' setting to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Have the flag influence automatic track selection Created 5 years, 7 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) 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 #include "core/html/HTMLCanvasElement.h" 134 #include "core/html/HTMLCanvasElement.h"
135 #include "core/html/HTMLCollection.h" 135 #include "core/html/HTMLCollection.h"
136 #include "core/html/HTMLDialogElement.h" 136 #include "core/html/HTMLDialogElement.h"
137 #include "core/html/HTMLDocument.h" 137 #include "core/html/HTMLDocument.h"
138 #include "core/html/HTMLFrameOwnerElement.h" 138 #include "core/html/HTMLFrameOwnerElement.h"
139 #include "core/html/HTMLHeadElement.h" 139 #include "core/html/HTMLHeadElement.h"
140 #include "core/html/HTMLHtmlElement.h" 140 #include "core/html/HTMLHtmlElement.h"
141 #include "core/html/HTMLIFrameElement.h" 141 #include "core/html/HTMLIFrameElement.h"
142 #include "core/html/HTMLInputElement.h" 142 #include "core/html/HTMLInputElement.h"
143 #include "core/html/HTMLLinkElement.h" 143 #include "core/html/HTMLLinkElement.h"
144 #include "core/html/HTMLMediaElement.h"
144 #include "core/html/HTMLMetaElement.h" 145 #include "core/html/HTMLMetaElement.h"
145 #include "core/html/HTMLScriptElement.h" 146 #include "core/html/HTMLScriptElement.h"
146 #include "core/html/HTMLStyleElement.h" 147 #include "core/html/HTMLStyleElement.h"
147 #include "core/html/HTMLTemplateElement.h" 148 #include "core/html/HTMLTemplateElement.h"
148 #include "core/html/HTMLTitleElement.h" 149 #include "core/html/HTMLTitleElement.h"
149 #include "core/html/PluginDocument.h" 150 #include "core/html/PluginDocument.h"
150 #include "core/html/WindowNameCollection.h" 151 #include "core/html/WindowNameCollection.h"
151 #include "core/html/canvas/CanvasContextCreationAttributes.h" 152 #include "core/html/canvas/CanvasContextCreationAttributes.h"
152 #include "core/html/canvas/CanvasRenderingContext.h" 153 #include "core/html/canvas/CanvasRenderingContext.h"
153 #include "core/html/canvas/CanvasRenderingContext2D.h" 154 #include "core/html/canvas/CanvasRenderingContext2D.h"
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 return *m_mediaQueryMatcher; 666 return *m_mediaQueryMatcher;
666 } 667 }
667 668
668 void Document::mediaQueryAffectingValueChanged() 669 void Document::mediaQueryAffectingValueChanged()
669 { 670 {
670 m_evaluateMediaQueriesOnStyleRecalc = true; 671 m_evaluateMediaQueriesOnStyleRecalc = true;
671 styleEngine().clearMediaQueryRuleSetStyleSheets(); 672 styleEngine().clearMediaQueryRuleSetStyleSheets();
672 InspectorInstrumentation::mediaQueryResultChanged(this); 673 InspectorInstrumentation::mediaQueryResultChanged(this);
673 } 674 }
674 675
676 void Document::textTracksVisibilityChanged(bool visible)
677 {
678 for (HTMLMediaElement* mediaElement = Traversal<HTMLMediaElement>::firstWith in(*this); mediaElement;
philipj_slow 2015/05/06 09:54:27 There's alrady a documentToElementSetMap() in HTML
srivats 2015/06/09 00:45:51 Done.
679 mediaElement = Traversal<HTMLMediaElement>::next(*mediaElement)) {
680 mediaElement->setClosedCaptionsVisible(visible);
681 }
682 }
683
675 void Document::setCompatibilityMode(CompatibilityMode mode) 684 void Document::setCompatibilityMode(CompatibilityMode mode)
676 { 685 {
677 if (m_compatibilityModeLocked || mode == m_compatibilityMode) 686 if (m_compatibilityModeLocked || mode == m_compatibilityMode)
678 return; 687 return;
679 m_compatibilityMode = mode; 688 m_compatibilityMode = mode;
680 selectorQueryCache().invalidate(); 689 selectorQueryCache().invalidate();
681 } 690 }
682 691
683 String Document::compatMode() const 692 String Document::compatMode() const
684 { 693 {
(...skipping 5023 matching lines...) Expand 10 before | Expand all | Expand 10 after
5708 #ifndef NDEBUG 5717 #ifndef NDEBUG
5709 using namespace blink; 5718 using namespace blink;
5710 void showLiveDocumentInstances() 5719 void showLiveDocumentInstances()
5711 { 5720 {
5712 WeakDocumentSet& set = liveDocumentSet(); 5721 WeakDocumentSet& set = liveDocumentSet();
5713 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 5722 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
5714 for (Document* document : set) 5723 for (Document* document : set)
5715 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data()); 5724 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data());
5716 } 5725 }
5717 #endif 5726 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698