Chromium Code Reviews| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 126 int orientation() const override; | 126 int orientation() const override; |
| 127 Console* console() const override; | 127 Console* console() const override; |
| 128 Performance* performance() const override; | 128 Performance* performance() const override; |
| 129 DOMWindowCSS* css() const override; | 129 DOMWindowCSS* css() const override; |
| 130 DOMSelection* getSelection() override; | 130 DOMSelection* getSelection() override; |
| 131 void focus(ExecutionContext* = 0) override; | 131 void focus(ExecutionContext* = 0) override; |
| 132 void blur() override; | 132 void blur() override; |
| 133 void close(ExecutionContext* = 0) override; | 133 void close(ExecutionContext* = 0) override; |
| 134 void print() override; | 134 void print() override; |
| 135 void stop() override; | 135 void stop() override; |
| 136 void alert(const String& message = String()) override; | 136 void alert(const String& message) override; |
|
arv (Not doing code reviews)
2014/12/01 14:20:09
This looks unrelated
philipj_slow
2014/12/01 20:48:54
Yeah, I forgot to say why in the description. The
| |
| 137 bool confirm(const String& message) override; | 137 bool confirm(const String& message) override; |
| 138 String prompt(const String& message, const String& defaultValue) override; | 138 String prompt(const String& message, const String& defaultValue) override; |
| 139 bool find(const String&, bool caseSensitive, bool backwards, bool wrap, bool wholeWord, bool searchInFrames, bool showDialog) const override; | 139 bool find(const String&, bool caseSensitive, bool backwards, bool wrap, bool wholeWord, bool searchInFrames, bool showDialog) const override; |
| 140 | 140 |
| 141 // FIXME: ScrollBehaviorSmooth is currently unsupported in PinchViewport. | 141 // FIXME: ScrollBehaviorSmooth is currently unsupported in PinchViewport. |
| 142 // crbug.com/434497 | 142 // crbug.com/434497 |
| 143 void scrollBy(double x, double y, ScrollBehavior = ScrollBehaviorAuto) const override; | 143 void scrollBy(double x, double y, ScrollBehavior = ScrollBehaviorAuto) const override; |
| 144 void scrollBy(double x, double y, const ScrollOptions&, ExceptionState&) con st override; | 144 void scrollBy(double x, double y, const ScrollOptions&, ExceptionState&) con st override; |
| 145 void scrollTo(double x, double y, ScrollBehavior = ScrollBehaviorAuto) const override; | 145 void scrollTo(double x, double y, ScrollBehavior = ScrollBehaviorAuto) const override; |
| 146 void scrollTo(double x, double y, const ScrollOptions&, ExceptionState&) con st override; | 146 void scrollTo(double x, double y, const ScrollOptions&, ExceptionState&) con st override; |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 341 } | 341 } |
| 342 | 342 |
| 343 inline String LocalDOMWindow::defaultStatus() const | 343 inline String LocalDOMWindow::defaultStatus() const |
| 344 { | 344 { |
| 345 return m_defaultStatus; | 345 return m_defaultStatus; |
| 346 } | 346 } |
| 347 | 347 |
| 348 } // namespace blink | 348 } // namespace blink |
| 349 | 349 |
| 350 #endif // LocalDOMWindow_h | 350 #endif // LocalDOMWindow_h |
| OLD | NEW |