| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 WebWidgetClient* m_widgetClient; | 106 WebWidgetClient* m_widgetClient; |
| 107 WebRect m_windowRectInScreen; | 107 WebRect m_windowRectInScreen; |
| 108 WebViewImpl* m_webView; | 108 WebViewImpl* m_webView; |
| 109 OwnPtrWillBePersistent<Page> m_page; | 109 Persistent<Page> m_page; |
| 110 OwnPtrWillBePersistent<PagePopupChromeClient> m_chromeClient; | 110 Persistent<PagePopupChromeClient> m_chromeClient; |
| 111 PagePopupClient* m_popupClient; | 111 PagePopupClient* m_popupClient; |
| 112 bool m_closing; | 112 bool m_closing; |
| 113 | 113 |
| 114 WebLayerTreeView* m_layerTreeView; | 114 WebLayerTreeView* m_layerTreeView; |
| 115 WebLayer* m_rootLayer; | 115 WebLayer* m_rootLayer; |
| 116 GraphicsLayer* m_rootGraphicsLayer; | 116 GraphicsLayer* m_rootGraphicsLayer; |
| 117 bool m_isAcceleratedCompositingActive; | 117 bool m_isAcceleratedCompositingActive; |
| 118 | 118 |
| 119 friend class WebPagePopup; | 119 friend class WebPagePopup; |
| 120 friend class PagePopupChromeClient; | 120 friend class PagePopupChromeClient; |
| 121 }; | 121 }; |
| 122 | 122 |
| 123 DEFINE_TYPE_CASTS(WebPagePopupImpl, WebWidget, widget, widget->isPagePopup(), wi
dget.isPagePopup()); | 123 DEFINE_TYPE_CASTS(WebPagePopupImpl, WebWidget, widget, widget->isPagePopup(), wi
dget.isPagePopup()); |
| 124 // WebPagePopupImpl is the only implementation of PagePopup, so no | 124 // WebPagePopupImpl is the only implementation of PagePopup, so no |
| 125 // further checking required. | 125 // further checking required. |
| 126 DEFINE_TYPE_CASTS(WebPagePopupImpl, PagePopup, popup, true, true); | 126 DEFINE_TYPE_CASTS(WebPagePopupImpl, PagePopup, popup, true, true); |
| 127 | 127 |
| 128 } // namespace blink | 128 } // namespace blink |
| 129 #endif // WebPagePopupImpl_h | 129 #endif // WebPagePopupImpl_h |
| OLD | NEW |