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

Side by Side Diff: sky/engine/core/dom/Document.h

Issue 946083003: Rename Sky's custom2 to custom (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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 | « sky/engine/core/core.gni ('k') | sky/engine/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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 class HTMLImportLoader; 90 class HTMLImportLoader;
91 class HTMLImportsController; 91 class HTMLImportsController;
92 class HTMLScriptElement; 92 class HTMLScriptElement;
93 class HitTestRequest; 93 class HitTestRequest;
94 class LayoutPoint; 94 class LayoutPoint;
95 class LocalDOMWindow; 95 class LocalDOMWindow;
96 class LocalFrame; 96 class LocalFrame;
97 class Location; 97 class Location;
98 class MediaQueryListListener; 98 class MediaQueryListListener;
99 class MediaQueryMatcher; 99 class MediaQueryMatcher;
100 class NewCustomElementRegistry; 100 class CustomElementRegistry;
101 class Page; 101 class Page;
102 class QualifiedName; 102 class QualifiedName;
103 class Range; 103 class Range;
104 class RenderView; 104 class RenderView;
105 class RequestAnimationFrameCallback; 105 class RequestAnimationFrameCallback;
106 class ResourceFetcher; 106 class ResourceFetcher;
107 class ScriptRunner; 107 class ScriptRunner;
108 class ScriptedAnimationController; 108 class ScriptedAnimationController;
109 class SegmentedString; 109 class SegmentedString;
110 class SelectorQueryCache; 110 class SelectorQueryCache;
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 int requestAnimationFrame(PassOwnPtr<RequestAnimationFrameCallback>); 435 int requestAnimationFrame(PassOwnPtr<RequestAnimationFrameCallback>);
436 void cancelAnimationFrame(int id); 436 void cancelAnimationFrame(int id);
437 void serviceScriptedAnimations(double monotonicAnimationStartTime); 437 void serviceScriptedAnimations(double monotonicAnimationStartTime);
438 438
439 virtual EventTarget* errorEventTarget() override final; 439 virtual EventTarget* errorEventTarget() override final;
440 virtual void logExceptionToConsole(const String& errorMessage, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCal lStack>) override final; 440 virtual void logExceptionToConsole(const String& errorMessage, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCal lStack>) override final;
441 441
442 IntSize initialViewportSize() const; 442 IntSize initialViewportSize() const;
443 443
444 void registerElement(const AtomicString& name, PassRefPtr<DartValue> type, E xceptionState&); 444 void registerElement(const AtomicString& name, PassRefPtr<DartValue> type, E xceptionState&);
445 NewCustomElementRegistry& elementRegistry() const { return *m_elementRegistr y; } 445 CustomElementRegistry& elementRegistry() const { return *m_elementRegistry; }
446 446
447 void setImportsController(HTMLImportsController*); 447 void setImportsController(HTMLImportsController*);
448 HTMLImportsController* importsController() const { return m_importsControlle r; } 448 HTMLImportsController* importsController() const { return m_importsControlle r; }
449 HTMLImportsController& ensureImportsController(); 449 HTMLImportsController& ensureImportsController();
450 HTMLImportLoader* importLoader() const; 450 HTMLImportLoader* importLoader() const;
451 HTMLImport* import() const; 451 HTMLImport* import() const;
452 452
453 bool haveImportsLoaded() const; 453 bool haveImportsLoaded() const;
454 void didLoadAllImports(); 454 void didLoadAllImports();
455 455
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 653
654 Length m_viewportDefaultMinWidth; 654 Length m_viewportDefaultMinWidth;
655 655
656 bool m_didSetReferrerPolicy; 656 bool m_didSetReferrerPolicy;
657 ReferrerPolicy m_referrerPolicy; 657 ReferrerPolicy m_referrerPolicy;
658 658
659 RefPtr<MediaQueryMatcher> m_mediaQueryMatcher; 659 RefPtr<MediaQueryMatcher> m_mediaQueryMatcher;
660 660
661 RefPtr<ScriptedAnimationController> m_scriptedAnimationController; 661 RefPtr<ScriptedAnimationController> m_scriptedAnimationController;
662 662
663 RefPtr<NewCustomElementRegistry> m_elementRegistry; 663 RefPtr<CustomElementRegistry> m_elementRegistry;
664 664
665 void elementDataCacheClearTimerFired(Timer<Document>*); 665 void elementDataCacheClearTimerFired(Timer<Document>*);
666 Timer<Document> m_elementDataCacheClearTimer; 666 Timer<Document> m_elementDataCacheClearTimer;
667 667
668 OwnPtr<ElementDataCache> m_elementDataCache; 668 OwnPtr<ElementDataCache> m_elementDataCache;
669 669
670 AnimationClock m_animationClock; 670 AnimationClock m_animationClock;
671 RefPtr<AnimationTimeline> m_timeline; 671 RefPtr<AnimationTimeline> m_timeline;
672 PendingAnimations m_pendingAnimations; 672 PendingAnimations m_pendingAnimations;
673 673
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 } 710 }
711 711
712 } // namespace blink 712 } // namespace blink
713 713
714 #ifndef NDEBUG 714 #ifndef NDEBUG
715 // Outside the WebCore namespace for ease of invocation from gdb. 715 // Outside the WebCore namespace for ease of invocation from gdb.
716 void showLiveDocumentInstances(); 716 void showLiveDocumentInstances();
717 #endif 717 #endif
718 718
719 #endif // SKY_ENGINE_CORE_DOM_DOCUMENT_H_ 719 #endif // SKY_ENGINE_CORE_DOM_DOCUMENT_H_
OLDNEW
« no previous file with comments | « sky/engine/core/core.gni ('k') | sky/engine/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698