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

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

Issue 680583003: Delete ScriptableDocumentParser (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Sort headers Created 6 years, 2 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 class EventListener; 83 class EventListener;
84 template <typename EventType> 84 template <typename EventType>
85 class EventWithHitTestResults; 85 class EventWithHitTestResults;
86 class ExceptionState; 86 class ExceptionState;
87 class FloatQuad; 87 class FloatQuad;
88 class FloatRect; 88 class FloatRect;
89 class Frame; 89 class Frame;
90 class FrameHost; 90 class FrameHost;
91 class FrameView; 91 class FrameView;
92 class HTMLCanvasElement; 92 class HTMLCanvasElement;
93 class HTMLDocumentParser;
93 class HTMLElement; 94 class HTMLElement;
94 class HTMLImport; 95 class HTMLImport;
95 class HTMLImportLoader; 96 class HTMLImportLoader;
96 class HTMLImportsController; 97 class HTMLImportsController;
97 class HTMLLinkElement; 98 class HTMLLinkElement;
98 class HTMLScriptElement; 99 class HTMLScriptElement;
99 class HitTestRequest; 100 class HitTestRequest;
100 class LayoutPoint; 101 class LayoutPoint;
101 class Locale; 102 class Locale;
102 class LocalDOMWindow; 103 class LocalDOMWindow;
103 class LocalFrame; 104 class LocalFrame;
104 class Location; 105 class Location;
105 class MediaQueryListListener; 106 class MediaQueryListListener;
106 class MediaQueryMatcher; 107 class MediaQueryMatcher;
107 class Page; 108 class Page;
108 class PlatformMouseEvent; 109 class PlatformMouseEvent;
109 class QualifiedName; 110 class QualifiedName;
110 class Range; 111 class Range;
111 class RenderView; 112 class RenderView;
112 class RequestAnimationFrameCallback; 113 class RequestAnimationFrameCallback;
113 class ResourceFetcher; 114 class ResourceFetcher;
114 class ScriptRunner; 115 class ScriptRunner;
115 class ScriptableDocumentParser;
116 class ScriptedAnimationController; 116 class ScriptedAnimationController;
117 class SegmentedString; 117 class SegmentedString;
118 class SelectorQueryCache; 118 class SelectorQueryCache;
119 class SerializedScriptValue; 119 class SerializedScriptValue;
120 class Settings; 120 class Settings;
121 class StyleEngine; 121 class StyleEngine;
122 class StyleResolver; 122 class StyleResolver;
123 class StyleSheet; 123 class StyleSheet;
124 class StyleSheetList; 124 class StyleSheetList;
125 class Text; 125 class Text;
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 // To understand how these concepts relate to one another, please see the 360 // To understand how these concepts relate to one another, please see the
361 // comments surrounding their declaration. 361 // comments surrounding their declaration.
362 const KURL& baseURL() const { return m_baseURL; } 362 const KURL& baseURL() const { return m_baseURL; }
363 363
364 KURL completeURL(const String&) const; 364 KURL completeURL(const String&) const;
365 365
366 CSSStyleSheet& elementSheet(); 366 CSSStyleSheet& elementSheet();
367 367
368 virtual PassRefPtrWillBeRawPtr<DocumentParser> createParser(); 368 virtual PassRefPtrWillBeRawPtr<DocumentParser> createParser();
369 DocumentParser* parser() const { return m_parser.get(); } 369 DocumentParser* parser() const { return m_parser.get(); }
370 ScriptableDocumentParser* scriptableDocumentParser() const; 370 HTMLDocumentParser* scriptableDocumentParser() const;
371 371
372 enum ReadyState { 372 enum ReadyState {
373 Loading, 373 Loading,
374 Interactive, 374 Interactive,
375 Complete 375 Complete
376 }; 376 };
377 void setReadyState(ReadyState); 377 void setReadyState(ReadyState);
378 bool isLoadCompleted(); 378 bool isLoadCompleted();
379 379
380 void setParsing(bool); 380 void setParsing(bool);
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 Node* eventTargetNodeForDocument(Document*); 930 Node* eventTargetNodeForDocument(Document*);
931 931
932 } // namespace blink 932 } // namespace blink
933 933
934 #ifndef NDEBUG 934 #ifndef NDEBUG
935 // Outside the WebCore namespace for ease of invocation from gdb. 935 // Outside the WebCore namespace for ease of invocation from gdb.
936 void showLiveDocumentInstances(); 936 void showLiveDocumentInstances();
937 #endif 937 #endif
938 938
939 #endif // Document_h 939 #endif // 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