| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 class Page; | 69 class Page; |
| 70 class PopupOpeningObserver; | 70 class PopupOpeningObserver; |
| 71 class WebDragData; | 71 class WebDragData; |
| 72 class WebFrameScheduler; | 72 class WebFrameScheduler; |
| 73 class WebImage; | 73 class WebImage; |
| 74 class WebLayer; | 74 class WebLayer; |
| 75 | 75 |
| 76 struct CompositedSelection; | 76 struct CompositedSelection; |
| 77 struct DateTimeChooserParameters; | 77 struct DateTimeChooserParameters; |
| 78 struct FrameLoadRequest; | 78 struct FrameLoadRequest; |
| 79 struct GraphicsDeviceAdapter; | |
| 80 struct ViewportDescription; | 79 struct ViewportDescription; |
| 81 struct WebPoint; | 80 struct WebPoint; |
| 81 struct WebScreenInfo; |
| 82 struct WindowFeatures; | 82 struct WindowFeatures; |
| 83 | 83 |
| 84 class CORE_EXPORT ChromeClient : public HostWindow { | 84 class CORE_EXPORT ChromeClient : public HostWindow { |
| 85 public: | 85 public: |
| 86 virtual void chromeDestroyed() = 0; | 86 virtual void chromeDestroyed() = 0; |
| 87 | 87 |
| 88 // The specified rectangle is adjusted for the minimum window size and the | 88 // The specified rectangle is adjusted for the minimum window size and the |
| 89 // screen, then setWindowRect with the adjusted rectangle is called. | 89 // screen, then setWindowRect with the adjusted rectangle is called. |
| 90 void setWindowRectWithAdjustment(const IntRect&, LocalFrame&); | 90 void setWindowRectWithAdjustment(const IntRect&, LocalFrame&); |
| 91 virtual IntRect rootWindowRect() = 0; | 91 virtual IntRect rootWindowRect() = 0; |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 | 359 |
| 360 LayoutPoint m_lastToolTipPoint; | 360 LayoutPoint m_lastToolTipPoint; |
| 361 String m_lastToolTipText; | 361 String m_lastToolTipText; |
| 362 | 362 |
| 363 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 363 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 364 }; | 364 }; |
| 365 | 365 |
| 366 } // namespace blink | 366 } // namespace blink |
| 367 | 367 |
| 368 #endif // ChromeClient_h | 368 #endif // ChromeClient_h |
| OLD | NEW |