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

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

Issue 1118613002: Hook up Android closed captions 'enabled' setting to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressed comments from tkent 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, 2010, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 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) 2010 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
9 * Copyright (C) 2011 Google Inc. All rights reserved. 9 * Copyright (C) 2011 Google Inc. All rights reserved.
10 * 10 *
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 static PassRefPtrWillBeRawPtr<Document> create(const DocumentInit& initializ er = DocumentInit()) 230 static PassRefPtrWillBeRawPtr<Document> create(const DocumentInit& initializ er = DocumentInit())
231 { 231 {
232 return adoptRefWillBeNoop(new Document(initializer)); 232 return adoptRefWillBeNoop(new Document(initializer));
233 } 233 }
234 virtual ~Document(); 234 virtual ~Document();
235 235
236 MediaQueryMatcher& mediaQueryMatcher(); 236 MediaQueryMatcher& mediaQueryMatcher();
237 237
238 void mediaQueryAffectingValueChanged(); 238 void mediaQueryAffectingValueChanged();
239 239
240 void textTracksVisibilityChanged(bool visible);
241
240 #if !ENABLE(OILPAN) 242 #if !ENABLE(OILPAN)
241 using ContainerNode::ref; 243 using ContainerNode::ref;
242 using ContainerNode::deref; 244 using ContainerNode::deref;
243 #endif 245 #endif
244 using SecurityContext::securityOrigin; 246 using SecurityContext::securityOrigin;
245 using SecurityContext::contentSecurityPolicy; 247 using SecurityContext::contentSecurityPolicy;
246 using TreeScope::getElementById; 248 using TreeScope::getElementById;
247 249
248 virtual bool canContainRangeEndPoint() const override { return true; } 250 virtual bool canContainRangeEndPoint() const override { return true; }
249 251
(...skipping 1201 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1453 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1452 1454
1453 } // namespace blink 1455 } // namespace blink
1454 1456
1455 #ifndef NDEBUG 1457 #ifndef NDEBUG
1456 // Outside the WebCore namespace for ease of invocation from gdb. 1458 // Outside the WebCore namespace for ease of invocation from gdb.
1457 void showLiveDocumentInstances(); 1459 void showLiveDocumentInstances();
1458 #endif 1460 #endif
1459 1461
1460 #endif // Document_h 1462 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698