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

Side by Side Diff: third_party/WebKit/Source/core/frame/LocalDOMWindow.h

Issue 2200613002: The HTML parser synchronously creates custom elements (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Eliminate redundant TODOs. Created 4 years, 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 MediaQueryList* matchMedia(const String&) override; 147 MediaQueryList* matchMedia(const String&) override;
148 CSSStyleDeclaration* getComputedStyle(Element*, const String& pseudoElt) con st override; 148 CSSStyleDeclaration* getComputedStyle(Element*, const String& pseudoElt) con st override;
149 CSSRuleList* getMatchedCSSRules(Element*, const String& pseudoElt) const ove rride; 149 CSSRuleList* getMatchedCSSRules(Element*, const String& pseudoElt) const ove rride;
150 int requestAnimationFrame(FrameRequestCallback*) override; 150 int requestAnimationFrame(FrameRequestCallback*) override;
151 int webkitRequestAnimationFrame(FrameRequestCallback*) override; 151 int webkitRequestAnimationFrame(FrameRequestCallback*) override;
152 void cancelAnimationFrame(int id) override; 152 void cancelAnimationFrame(int id) override;
153 int requestIdleCallback(IdleRequestCallback*, const IdleRequestOptions&) ove rride; 153 int requestIdleCallback(IdleRequestCallback*, const IdleRequestOptions&) ove rride;
154 void cancelIdleCallback(int id) override; 154 void cancelIdleCallback(int id) override;
155 CustomElementsRegistry* customElements(ScriptState*) const override; 155 CustomElementsRegistry* customElements(ScriptState*) const override;
156 CustomElementsRegistry* customElements() const; 156 CustomElementsRegistry* customElements() const;
157 CustomElementsRegistry* maybeCustomElements() const;
157 158
158 void registerProperty(DOMWindowProperty*); 159 void registerProperty(DOMWindowProperty*);
159 void unregisterProperty(DOMWindowProperty*); 160 void unregisterProperty(DOMWindowProperty*);
160 161
161 void registerEventListenerObserver(EventListenerObserver*); 162 void registerEventListenerObserver(EventListenerObserver*);
162 163
163 void reset(); 164 void reset();
164 165
165 unsigned pendingUnloadEventListeners() const; 166 unsigned pendingUnloadEventListeners() const;
166 167
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 } 277 }
277 278
278 inline String LocalDOMWindow::defaultStatus() const 279 inline String LocalDOMWindow::defaultStatus() const
279 { 280 {
280 return m_defaultStatus; 281 return m_defaultStatus;
281 } 282 }
282 283
283 } // namespace blink 284 } // namespace blink
284 285
285 #endif // LocalDOMWindow_h 286 #endif // LocalDOMWindow_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698