| OLD | NEW |
| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 void setName(const AtomicString&) override; | 110 void setName(const AtomicString&) override; |
| 111 String status() const override; | 111 String status() const override; |
| 112 void setStatus(const String&) override; | 112 void setStatus(const String&) override; |
| 113 String defaultStatus() const override; | 113 String defaultStatus() const override; |
| 114 void setDefaultStatus(const String&) override; | 114 void setDefaultStatus(const String&) override; |
| 115 Document* document() const override; | 115 Document* document() const override; |
| 116 StyleMedia* styleMedia() const override; | 116 StyleMedia* styleMedia() const override; |
| 117 double devicePixelRatio() const override; | 117 double devicePixelRatio() const override; |
| 118 ApplicationCache* applicationCache() const override; | 118 ApplicationCache* applicationCache() const override; |
| 119 int orientation() const override; | 119 int orientation() const override; |
| 120 Console* console() const override; | |
| 121 DOMSelection* getSelection() override; | 120 DOMSelection* getSelection() override; |
| 122 void blur() override; | 121 void blur() override; |
| 123 void print() override; | 122 void print() override; |
| 124 void stop() override; | 123 void stop() override; |
| 125 void alert(const String& message = String()) override; | 124 void alert(const String& message = String()) override; |
| 126 bool confirm(const String& message) override; | 125 bool confirm(const String& message) override; |
| 127 String prompt(const String& message, const String& defaultValue) override; | 126 String prompt(const String& message, const String& defaultValue) override; |
| 128 bool find(const String&, bool caseSensitive, bool backwards, bool wrap, bool
wholeWord, bool searchInFrames, bool showDialog) const override; | 127 bool find(const String&, bool caseSensitive, bool backwards, bool wrap, bool
wholeWord, bool searchInFrames, bool showDialog) const override; |
| 129 | 128 |
| 130 // FIXME: ScrollBehaviorSmooth is currently unsupported in VisualViewport. | 129 // FIXME: ScrollBehaviorSmooth is currently unsupported in VisualViewport. |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 HeapHashSet<WeakMember<DOMWindowProperty>> m_properties; | 252 HeapHashSet<WeakMember<DOMWindowProperty>> m_properties; |
| 254 | 253 |
| 255 mutable Member<Screen> m_screen; | 254 mutable Member<Screen> m_screen; |
| 256 mutable Member<History> m_history; | 255 mutable Member<History> m_history; |
| 257 mutable Member<BarProp> m_locationbar; | 256 mutable Member<BarProp> m_locationbar; |
| 258 mutable Member<BarProp> m_menubar; | 257 mutable Member<BarProp> m_menubar; |
| 259 mutable Member<BarProp> m_personalbar; | 258 mutable Member<BarProp> m_personalbar; |
| 260 mutable Member<BarProp> m_scrollbars; | 259 mutable Member<BarProp> m_scrollbars; |
| 261 mutable Member<BarProp> m_statusbar; | 260 mutable Member<BarProp> m_statusbar; |
| 262 mutable Member<BarProp> m_toolbar; | 261 mutable Member<BarProp> m_toolbar; |
| 263 mutable Member<Console> m_console; | |
| 264 mutable Member<Navigator> m_navigator; | 262 mutable Member<Navigator> m_navigator; |
| 265 mutable Member<StyleMedia> m_media; | 263 mutable Member<StyleMedia> m_media; |
| 266 mutable Member<CustomElementsRegistry> m_customElements; | 264 mutable Member<CustomElementsRegistry> m_customElements; |
| 267 | 265 |
| 268 String m_status; | 266 String m_status; |
| 269 String m_defaultStatus; | 267 String m_defaultStatus; |
| 270 | 268 |
| 271 mutable Member<ApplicationCache> m_applicationCache; | 269 mutable Member<ApplicationCache> m_applicationCache; |
| 272 | 270 |
| 273 Member<DOMWindowEventQueue> m_eventQueue; | 271 Member<DOMWindowEventQueue> m_eventQueue; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 284 } | 282 } |
| 285 | 283 |
| 286 inline String LocalDOMWindow::defaultStatus() const | 284 inline String LocalDOMWindow::defaultStatus() const |
| 287 { | 285 { |
| 288 return m_defaultStatus; | 286 return m_defaultStatus; |
| 289 } | 287 } |
| 290 | 288 |
| 291 } // namespace blink | 289 } // namespace blink |
| 292 | 290 |
| 293 #endif // LocalDOMWindow_h | 291 #endif // LocalDOMWindow_h |
| OLD | NEW |