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

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

Issue 1456843002: Finch experiment: auto-detect text encoding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments Created 5 years 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 1539 matching lines...) Expand 10 before | Expand all | Expand 10 after
1550 ScriptForbiddenScope forbidScript; 1550 ScriptForbiddenScope forbidScript;
1551 1551
1552 if (!isActive()) 1552 if (!isActive())
1553 return; 1553 return;
1554 if (!childNeedsStyleInvalidation()) 1554 if (!childNeedsStyleInvalidation())
1555 return; 1555 return;
1556 TRACE_EVENT0("blink", "Document::updateStyleInvalidationIfNeeded"); 1556 TRACE_EVENT0("blink", "Document::updateStyleInvalidationIfNeeded");
1557 styleEngine().styleInvalidator().invalidate(*this); 1557 styleEngine().styleInvalidator().invalidate(*this);
1558 } 1558 }
1559 1559
1560 bool Document::attemptedToDetermineEncodingFromContentSniffing() const
1561 {
1562 return m_encodingData.attemptedToDetermineEncodingFromContentSniffing();
1563 }
1564
1565 bool Document::encodingWasDetectedFromContentSniffing() const
1566 {
1567 return m_encodingData.encodingWasDetectedFromContentSniffing();
1568 }
1569
1560 void Document::setupFontBuilder(ComputedStyle& documentStyle) 1570 void Document::setupFontBuilder(ComputedStyle& documentStyle)
1561 { 1571 {
1562 FontBuilder fontBuilder(*this); 1572 FontBuilder fontBuilder(*this);
1563 RefPtrWillBeRawPtr<CSSFontSelector> selector = styleEngine().fontSelector(); 1573 RefPtrWillBeRawPtr<CSSFontSelector> selector = styleEngine().fontSelector();
1564 fontBuilder.createFontForDocument(selector, documentStyle); 1574 fontBuilder.createFontForDocument(selector, documentStyle);
1565 } 1575 }
1566 1576
1567 void Document::inheritHtmlAndBodyElementStyles(StyleRecalcChange change) 1577 void Document::inheritHtmlAndBodyElementStyles(StyleRecalcChange change)
1568 { 1578 {
1569 ASSERT(inStyleRecalc()); 1579 ASSERT(inStyleRecalc());
(...skipping 4274 matching lines...) Expand 10 before | Expand all | Expand 10 after
5844 #ifndef NDEBUG 5854 #ifndef NDEBUG
5845 using namespace blink; 5855 using namespace blink;
5846 void showLiveDocumentInstances() 5856 void showLiveDocumentInstances()
5847 { 5857 {
5848 Document::WeakDocumentSet& set = Document::liveDocumentSet(); 5858 Document::WeakDocumentSet& set = Document::liveDocumentSet();
5849 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 5859 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
5850 for (Document* document : set) 5860 for (Document* document : set)
5851 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data()); 5861 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data());
5852 } 5862 }
5853 #endif 5863 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698