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

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

Issue 1583653002: Remove the SVG update hack. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/FrameView.cpp » ('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, 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 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after
1015 void registerVisibilityObserver(DocumentVisibilityObserver*); 1015 void registerVisibilityObserver(DocumentVisibilityObserver*);
1016 void unregisterVisibilityObserver(DocumentVisibilityObserver*); 1016 void unregisterVisibilityObserver(DocumentVisibilityObserver*);
1017 1017
1018 void updateStyleInvalidationIfNeeded(); 1018 void updateStyleInvalidationIfNeeded();
1019 1019
1020 bool attemptedToDetermineEncodingFromContentSniffing() const; 1020 bool attemptedToDetermineEncodingFromContentSniffing() const;
1021 bool encodingWasDetectedFromContentSniffing() const; 1021 bool encodingWasDetectedFromContentSniffing() const;
1022 1022
1023 DECLARE_VIRTUAL_TRACE(); 1023 DECLARE_VIRTUAL_TRACE();
1024 1024
1025 bool hasSVGFilterElementsRequiringLayerUpdate() const { return m_layerUpdate SVGFilterElements.size(); }
1026 void didRecalculateStyleForElement() { ++m_styleRecalcElementCounter; } 1025 void didRecalculateStyleForElement() { ++m_styleRecalcElementCounter; }
1027 1026
1028 AtomicString convertLocalName(const AtomicString&); 1027 AtomicString convertLocalName(const AtomicString&);
1029 1028
1030 void platformColorsChanged(); 1029 void platformColorsChanged();
1031 1030
1032 DOMTimerCoordinator* timers() final; 1031 DOMTimerCoordinator* timers() final;
1033 1032
1034 v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationConte xt) override; 1033 v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationConte xt) override;
1035 v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeIn fo*, v8::Local<v8::Object> wrapper) override WARN_UNUSED_RETURN; 1034 v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeIn fo*, v8::Local<v8::Object> wrapper) override WARN_UNUSED_RETURN;
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
1449 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1448 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1450 1449
1451 } // namespace blink 1450 } // namespace blink
1452 1451
1453 #ifndef NDEBUG 1452 #ifndef NDEBUG
1454 // Outside the WebCore namespace for ease of invocation from gdb. 1453 // Outside the WebCore namespace for ease of invocation from gdb.
1455 CORE_EXPORT void showLiveDocumentInstances(); 1454 CORE_EXPORT void showLiveDocumentInstances();
1456 #endif 1455 #endif
1457 1456
1458 #endif // Document_h 1457 #endif // Document_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698