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

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

Issue 1721673002: Removed Document::addedStyleSheet. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 StyleSheetList* styleSheets(); 381 StyleSheetList* styleSheets();
382 382
383 StyleEngine& styleEngine() { ASSERT(m_styleEngine.get()); return *m_styleEng ine.get(); } 383 StyleEngine& styleEngine() { ASSERT(m_styleEngine.get()); return *m_styleEng ine.get(); }
384 384
385 bool gotoAnchorNeededAfterStylesheetsLoad() { return m_gotoAnchorNeededAfter StylesheetsLoad; } 385 bool gotoAnchorNeededAfterStylesheetsLoad() { return m_gotoAnchorNeededAfter StylesheetsLoad; }
386 void setGotoAnchorNeededAfterStylesheetsLoad(bool b) { m_gotoAnchorNeededAft erStylesheetsLoad = b; } 386 void setGotoAnchorNeededAfterStylesheetsLoad(bool b) { m_gotoAnchorNeededAft erStylesheetsLoad = b; }
387 387
388 // FIXME: Switch all callers of resolverChanged to these or better ones and then make them 388 // FIXME: Switch all callers of resolverChanged to these or better ones and then make them
389 // do something smarter. 389 // do something smarter.
390 void removedStyleSheet(StyleSheet*, StyleResolverUpdateMode = FullStyleUpdat e); 390 void removedStyleSheet(StyleSheet*, StyleResolverUpdateMode = FullStyleUpdat e);
391 void addedStyleSheet(StyleSheet*);
392 void modifiedStyleSheet(StyleSheet*, StyleResolverUpdateMode = FullStyleUpda te); 391 void modifiedStyleSheet(StyleSheet*, StyleResolverUpdateMode = FullStyleUpda te);
393 void changedSelectorWatch(); 392 void changedSelectorWatch();
394 393
395 void scheduleUseShadowTreeUpdate(SVGUseElement&); 394 void scheduleUseShadowTreeUpdate(SVGUseElement&);
396 void unscheduleUseShadowTreeUpdate(SVGUseElement&); 395 void unscheduleUseShadowTreeUpdate(SVGUseElement&);
397 396
398 // FIXME: SVG filters should change to store the filter on the ComputedStyle 397 // FIXME: SVG filters should change to store the filter on the ComputedStyle
399 // instead of the LayoutObject so we can get rid of this hack. 398 // instead of the LayoutObject so we can get rid of this hack.
400 void scheduleSVGFilterLayerUpdateHack(Element&); 399 void scheduleSVGFilterLayerUpdateHack(Element&);
401 void unscheduleSVGFilterLayerUpdateHack(Element&); 400 void unscheduleSVGFilterLayerUpdateHack(Element&);
(...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after
1447 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1446 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1448 1447
1449 } // namespace blink 1448 } // namespace blink
1450 1449
1451 #ifndef NDEBUG 1450 #ifndef NDEBUG
1452 // Outside the WebCore namespace for ease of invocation from gdb. 1451 // Outside the WebCore namespace for ease of invocation from gdb.
1453 CORE_EXPORT void showLiveDocumentInstances(); 1452 CORE_EXPORT void showLiveDocumentInstances();
1454 #endif 1453 #endif
1455 1454
1456 #endif // Document_h 1455 #endif // Document_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698