| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights |
| 3 * reserved. | 3 * reserved. |
| 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 bool openJavaScriptConfirm(LocalFrame*, const String&); | 170 bool openJavaScriptConfirm(LocalFrame*, const String&); |
| 171 bool openJavaScriptPrompt(LocalFrame*, | 171 bool openJavaScriptPrompt(LocalFrame*, |
| 172 const String& message, | 172 const String& message, |
| 173 const String& defaultValue, | 173 const String& defaultValue, |
| 174 String& result); | 174 String& result); |
| 175 virtual void setStatusbarText(const String&) = 0; | 175 virtual void setStatusbarText(const String&) = 0; |
| 176 virtual bool tabsToLinks() = 0; | 176 virtual bool tabsToLinks() = 0; |
| 177 | 177 |
| 178 virtual void* webView() const = 0; | 178 virtual void* webView() const = 0; |
| 179 | 179 |
| 180 virtual IntRect windowResizerRect(LocalFrame&) const = 0; | |
| 181 | |
| 182 // Methods used by HostWindow. | 180 // Methods used by HostWindow. |
| 183 virtual WebScreenInfo screenInfo() const = 0; | 181 virtual WebScreenInfo screenInfo() const = 0; |
| 184 virtual void setCursor(const Cursor&, LocalFrame* localRoot) = 0; | 182 virtual void setCursor(const Cursor&, LocalFrame* localRoot) = 0; |
| 185 // End methods used by HostWindow. | 183 // End methods used by HostWindow. |
| 186 virtual Cursor lastSetCursorForTesting() const = 0; | 184 virtual Cursor lastSetCursorForTesting() const = 0; |
| 187 | 185 |
| 188 // Returns a custom visible content rect if a viewport override is active. | 186 // Returns a custom visible content rect if a viewport override is active. |
| 189 virtual WTF::Optional<IntRect> visibleContentRectForPainting() const { | 187 virtual WTF::Optional<IntRect> visibleContentRectForPainting() const { |
| 190 return WTF::nullopt; | 188 return WTF::nullopt; |
| 191 } | 189 } |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 | 359 |
| 362 LayoutPoint m_lastToolTipPoint; | 360 LayoutPoint m_lastToolTipPoint; |
| 363 String m_lastToolTipText; | 361 String m_lastToolTipText; |
| 364 | 362 |
| 365 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 363 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 366 }; | 364 }; |
| 367 | 365 |
| 368 } // namespace blink | 366 } // namespace blink |
| 369 | 367 |
| 370 #endif // ChromeClient_h | 368 #endif // ChromeClient_h |
| OLD | NEW |