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

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

Issue 1001913003: Remove <canvas> (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 8 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 #include "sky/engine/wtf/text/TextEncoding.h" 58 #include "sky/engine/wtf/text/TextEncoding.h"
59 #include "sky/engine/wtf/text/TextPosition.h" 59 #include "sky/engine/wtf/text/TextPosition.h"
60 60
61 namespace blink { 61 namespace blink {
62 62
63 class AbstractModule; 63 class AbstractModule;
64 class AnimationTimeline; 64 class AnimationTimeline;
65 class Attr; 65 class Attr;
66 class CSSStyleDeclaration; 66 class CSSStyleDeclaration;
67 class CSSStyleSheet; 67 class CSSStyleSheet;
68 class CanvasRenderingContext2D;
69 class Comment; 68 class Comment;
70 class ConsoleMessage; 69 class ConsoleMessage;
71 class DocumentFragment; 70 class DocumentFragment;
72 class DocumentLifecycleNotifier; 71 class DocumentLifecycleNotifier;
73 class DocumentLoadTiming; 72 class DocumentLoadTiming;
74 class DocumentMarkerController; 73 class DocumentMarkerController;
75 class DocumentParser; 74 class DocumentParser;
76 class Element; 75 class Element;
77 class ElementDataCache; 76 class ElementDataCache;
78 class Event; 77 class Event;
79 class EventListener; 78 class EventListener;
80 class ExceptionState; 79 class ExceptionState;
81 class FloatQuad; 80 class FloatQuad;
82 class FloatRect; 81 class FloatRect;
83 class Frame; 82 class Frame;
84 class FrameHost; 83 class FrameHost;
85 class FrameView; 84 class FrameView;
86 class HTMLCanvasElement;
87 class HTMLDocumentParser; 85 class HTMLDocumentParser;
88 class HTMLElement; 86 class HTMLElement;
89 class HTMLImport; 87 class HTMLImport;
90 class HTMLImportLoader; 88 class HTMLImportLoader;
91 class HTMLImportsController; 89 class HTMLImportsController;
92 class HTMLScriptElement; 90 class HTMLScriptElement;
93 class HitTestRequest; 91 class HitTestRequest;
94 class LayoutPoint; 92 class LayoutPoint;
95 class LocalDOMWindow; 93 class LocalDOMWindow;
96 class LocalFrame; 94 class LocalFrame;
97 class Location; 95 class Location;
98 class MediaQueryListListener; 96 class MediaQueryListListener;
99 class MediaQueryMatcher; 97 class MediaQueryMatcher;
100 class CustomElementRegistry; 98 class CustomElementRegistry;
101 class Page; 99 class Page;
102 class QualifiedName; 100 class QualifiedName;
103 class Range; 101 class Range;
104 class RenderView; 102 class RenderView;
105 class RequestAnimationFrameCallback; 103 class RequestAnimationFrameCallback;
106 class ResourceFetcher; 104 class ResourceFetcher;
107 class ScriptRunner; 105 class ScriptRunner;
108 class ScriptedAnimationController; 106 class ScriptedAnimationController;
109 class SegmentedString; 107 class SegmentedString;
110 class SelectorQueryCache; 108 class SelectorQueryCache;
111 class Settings; 109 class Settings;
112 class StyleEngine; 110 class StyleEngine;
113 class StyleResolver; 111 class StyleResolver;
114 class Text; 112 class Text;
115 class WebGLRenderingContext;
116 113
117 struct AnnotatedRegionValue; 114 struct AnnotatedRegionValue;
118 115
119 typedef int ExceptionCode; 116 typedef int ExceptionCode;
120 117
121 class Document; 118 class Document;
122 119
123 class Document : public ContainerNode, public TreeScope, public ExecutionContext , public ExecutionContextClient 120 class Document : public ContainerNode, public TreeScope, public ExecutionContext , public ExecutionContextClient
124 , public DocumentSupplementable, public LifecycleContext<Document>, public R esourceClient { 121 , public DocumentSupplementable, public LifecycleContext<Document>, public R esourceClient {
125 DEFINE_WRAPPERTYPEINFO(); 122 DEFINE_WRAPPERTYPEINFO();
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 } 707 }
711 708
712 } // namespace blink 709 } // namespace blink
713 710
714 #ifndef NDEBUG 711 #ifndef NDEBUG
715 // Outside the WebCore namespace for ease of invocation from gdb. 712 // Outside the WebCore namespace for ease of invocation from gdb.
716 void showLiveDocumentInstances(); 713 void showLiveDocumentInstances();
717 #endif 714 #endif
718 715
719 #endif // SKY_ENGINE_CORE_DOM_DOCUMENT_H_ 716 #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