OLD | NEW |
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 "core/frame/Frame.h" | 12 #include "core/frame/Frame.h" |
13 #include "platform/heap/Handle.h" | 13 #include "platform/heap/Handle.h" |
14 #include "wtf/Assertions.h" | 14 #include "platform/wtf/Assertions.h" |
15 #include "wtf/Forward.h" | 15 #include "platform/wtf/Forward.h" |
16 | 16 |
17 namespace blink { | 17 namespace blink { |
18 | 18 |
19 class Document; | 19 class Document; |
20 class InputDeviceCapabilitiesConstants; | 20 class InputDeviceCapabilitiesConstants; |
21 class Location; | 21 class Location; |
22 class LocalDOMWindow; | 22 class LocalDOMWindow; |
23 class MessageEvent; | 23 class MessageEvent; |
24 class SerializedScriptValue; | 24 class SerializedScriptValue; |
25 | 25 |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 // |window.closed| determinism; having it return 'true' | 128 // |window.closed| determinism; having it return 'true' |
129 // only after the layout widget's deferred window close | 129 // only after the layout widget's deferred window close |
130 // operation has been performed, exposes (confusing) | 130 // operation has been performed, exposes (confusing) |
131 // implementation details to scripts. | 131 // implementation details to scripts. |
132 bool window_is_closing_; | 132 bool window_is_closing_; |
133 }; | 133 }; |
134 | 134 |
135 } // namespace blink | 135 } // namespace blink |
136 | 136 |
137 #endif // DOMWindow_h | 137 #endif // DOMWindow_h |
OLD | NEW |