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

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

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 years, 1 month 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DOMWindow_h 5 #ifndef DOMWindow_h
6 #define DOMWindow_h 6 #define DOMWindow_h
7 7
8 #include "bindings/core/v8/Transferables.h" 8 #include "bindings/core/v8/Transferables.h"
9 #include "core/CoreExport.h" 9 #include "core/CoreExport.h"
10 #include "core/events/EventTarget.h" 10 #include "core/events/EventTarget.h"
11 #include "core/frame/DOMWindowBase64.h" 11 #include "core/frame/DOMWindowBase64.h"
12 #include "platform/heap/Handle.h" 12 #include "platform/heap/Handle.h"
13 #include "platform/scroll/ScrollableArea.h" 13 #include "platform/scroll/ScrollableArea.h"
14 14
15 #include "wtf/Forward.h" 15 #include "wtf/Forward.h"
16 16
17 namespace blink { 17 namespace blink {
18 18
19 class ApplicationCache; 19 class ApplicationCache;
20 class BarProp; 20 class BarProp;
21 class CSSRuleList; 21 class CSSRuleList;
22 class CSSStyleDeclaration; 22 class CSSStyleDeclaration;
23 class CustomElementRegistry; 23 class CustomElementRegistry;
24 class DOMSelection; 24 class DOMSelection;
25 class DOMVisualViewport; 25 class DOMVisualViewport;
26 class DOMWindowCSS;
27 class Document; 26 class Document;
28 class Element; 27 class Element;
29 class External; 28 class External;
30 class Frame; 29 class Frame;
31 class FrameRequestCallback; 30 class FrameRequestCallback;
32 class History; 31 class History;
33 class IdleRequestCallback; 32 class IdleRequestCallback;
34 class IdleRequestOptions; 33 class IdleRequestOptions;
35 class Location; 34 class Location;
36 class LocalDOMWindow; 35 class LocalDOMWindow;
37 class MessageEvent; 36 class MessageEvent;
38 class MediaQueryList; 37 class MediaQueryList;
39 class Navigator; 38 class Navigator;
40 class Screen; 39 class Screen;
41 class ScriptState; 40 class ScriptState;
42 class ScrollToOptions; 41 class ScrollToOptions;
43 class SerializedScriptValue; 42 class SerializedScriptValue;
44 class Storage;
45 class StyleMedia; 43 class StyleMedia;
46 44
47 class CORE_EXPORT DOMWindow : public EventTargetWithInlineData, 45 class CORE_EXPORT DOMWindow : public EventTargetWithInlineData,
48 public DOMWindowBase64 { 46 public DOMWindowBase64 {
49 DEFINE_WRAPPERTYPEINFO(); 47 DEFINE_WRAPPERTYPEINFO();
50 48
51 public: 49 public:
52 ~DOMWindow() override; 50 ~DOMWindow() override;
53 51
54 // GarbageCollectedFinalized overrides: 52 // GarbageCollectedFinalized overrides:
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 // implementation details to scripts. 266 // implementation details to scripts.
269 bool m_windowIsClosing; 267 bool m_windowIsClosing;
270 268
271 private: 269 private:
272 mutable Member<Location> m_location; 270 mutable Member<Location> m_location;
273 }; 271 };
274 272
275 } // namespace blink 273 } // namespace blink
276 274
277 #endif // DOMWindow_h 275 #endif // DOMWindow_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/fetch/ResourceFetcher.h ('k') | third_party/WebKit/Source/core/frame/DOMWindowProperty.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698