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

Side by Side Diff: sky/engine/core/frame/LocalDOMWindow.h

Issue 928393003: Remove the concept of document.documentElement (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/frame/FrameView.cpp ('k') | sky/engine/core/frame/LocalDOMWindow.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) 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 return adoptRef(new LocalDOMWindow(frame)); 84 return adoptRef(new LocalDOMWindow(frame));
85 } 85 }
86 virtual ~LocalDOMWindow(); 86 virtual ~LocalDOMWindow();
87 87
88 PassRefPtr<Document> installNewDocument(const DocumentInit&); 88 PassRefPtr<Document> installNewDocument(const DocumentInit&);
89 89
90 virtual const AtomicString& interfaceName() const override; 90 virtual const AtomicString& interfaceName() const override;
91 virtual ExecutionContext* executionContext() const override; 91 virtual ExecutionContext* executionContext() const override;
92 92
93 virtual LocalDOMWindow* toDOMWindow() override; 93 virtual LocalDOMWindow* toDOMWindow() override;
94 void AcceptDartGCVisitor(DartGCVisitor& visitor) const override;
94 95
95 void registerProperty(DOMWindowProperty*); 96 void registerProperty(DOMWindowProperty*);
96 void unregisterProperty(DOMWindowProperty*); 97 void unregisterProperty(DOMWindowProperty*);
97 98
98 void reset(); 99 void reset();
99 100
100 PassRefPtr<MediaQueryList> matchMedia(const String&); 101 PassRefPtr<MediaQueryList> matchMedia(const String&);
101 102
102 unsigned pendingUnloadEventListeners() const; 103 unsigned pendingUnloadEventListeners() const;
103 104
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 mutable RefPtr<Location> m_location; 234 mutable RefPtr<Location> m_location;
234 235
235 mutable RefPtr<DOMWindowCSS> m_css; 236 mutable RefPtr<DOMWindowCSS> m_css;
236 237
237 RefPtr<DOMWindowEventQueue> m_eventQueue; 238 RefPtr<DOMWindowEventQueue> m_eventQueue;
238 }; 239 };
239 240
240 } // namespace blink 241 } // namespace blink
241 242
242 #endif // SKY_ENGINE_CORE_FRAME_LOCALDOMWINDOW_H_ 243 #endif // SKY_ENGINE_CORE_FRAME_LOCALDOMWINDOW_H_
OLDNEW
« no previous file with comments | « sky/engine/core/frame/FrameView.cpp ('k') | sky/engine/core/frame/LocalDOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698