Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(480)

Side by Side Diff: third_party/WebKit/Source/web/WebPagePopupImpl.h

Issue 1894333002: Make WebWidget::resize early out if the size doesn't change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « content/renderer/render_widget_fullscreen_pepper.cc ('k') | third_party/WebKit/Source/web/WebPagePopupImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698