OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 // PagePopup function | 96 // PagePopup function |
97 AXObject* rootAXObject() override; | 97 AXObject* rootAXObject() override; |
98 void setWindowRect(const IntRect&) override; | 98 void setWindowRect(const IntRect&) override; |
99 | 99 |
100 explicit WebPagePopupImpl(WebWidgetClient*); | 100 explicit WebPagePopupImpl(WebWidgetClient*); |
101 bool initializePage(); | 101 bool initializePage(); |
102 void destroyPage(); | 102 void destroyPage(); |
103 void setRootGraphicsLayer(GraphicsLayer*); | 103 void setRootGraphicsLayer(GraphicsLayer*); |
104 void setIsAcceleratedCompositingActive(bool enter); | 104 void setIsAcceleratedCompositingActive(bool enter); |
105 | 105 |
| 106 WebRect windowRectInScreen() const; |
| 107 |
106 WebWidgetClient* m_widgetClient; | 108 WebWidgetClient* m_widgetClient; |
107 WebRect m_windowRectInScreen; | |
108 WebViewImpl* m_webView; | 109 WebViewImpl* m_webView; |
109 Persistent<Page> m_page; | 110 Persistent<Page> m_page; |
110 Persistent<PagePopupChromeClient> m_chromeClient; | 111 Persistent<PagePopupChromeClient> m_chromeClient; |
111 PagePopupClient* m_popupClient; | 112 PagePopupClient* m_popupClient; |
112 bool m_closing; | 113 bool m_closing; |
113 | 114 |
114 WebLayerTreeView* m_layerTreeView; | 115 WebLayerTreeView* m_layerTreeView; |
115 WebLayer* m_rootLayer; | 116 WebLayer* m_rootLayer; |
116 GraphicsLayer* m_rootGraphicsLayer; | 117 GraphicsLayer* m_rootGraphicsLayer; |
117 bool m_isAcceleratedCompositingActive; | 118 bool m_isAcceleratedCompositingActive; |
118 | 119 |
119 friend class WebPagePopup; | 120 friend class WebPagePopup; |
120 friend class PagePopupChromeClient; | 121 friend class PagePopupChromeClient; |
121 }; | 122 }; |
122 | 123 |
123 DEFINE_TYPE_CASTS(WebPagePopupImpl, WebWidget, widget, widget->isPagePopup(), wi
dget.isPagePopup()); | 124 DEFINE_TYPE_CASTS(WebPagePopupImpl, WebWidget, widget, widget->isPagePopup(), wi
dget.isPagePopup()); |
124 // WebPagePopupImpl is the only implementation of PagePopup, so no | 125 // WebPagePopupImpl is the only implementation of PagePopup, so no |
125 // further checking required. | 126 // further checking required. |
126 DEFINE_TYPE_CASTS(WebPagePopupImpl, PagePopup, popup, true, true); | 127 DEFINE_TYPE_CASTS(WebPagePopupImpl, PagePopup, popup, true, true); |
127 | 128 |
128 } // namespace blink | 129 } // namespace blink |
129 #endif // WebPagePopupImpl_h | 130 #endif // WebPagePopupImpl_h |
OLD | NEW |