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

Side by Side Diff: Source/web/WebViewImpl.h

Issue 603193005: Move the Widget hierarchy to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase upto and resolve r182737 conflict. Created 6 years, 2 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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 679
680 // The available drag operations (copy, move link...) allowed by the source. 680 // The available drag operations (copy, move link...) allowed by the source.
681 WebDragOperation m_operationsAllowed; 681 WebDragOperation m_operationsAllowed;
682 682
683 // The current drag operation as negotiated by the source and destination. 683 // The current drag operation as negotiated by the source and destination.
684 // When not equal to DragOperationNone, the drag data can be dropped onto th e 684 // When not equal to DragOperationNone, the drag data can be dropped onto th e
685 // current drop target in this WebView (the drop target can accept the drop) . 685 // current drop target in this WebView (the drop target can accept the drop) .
686 WebDragOperation m_dragOperation; 686 WebDragOperation m_dragOperation;
687 687
688 // The popup associated with a select element. 688 // The popup associated with a select element.
689 RefPtr<PopupContainer> m_selectPopup; 689 RefPtrWillBePersistent<PopupContainer> m_selectPopup;
690 690
691 // The popup associated with an input element. 691 // The popup associated with an input element.
692 RefPtr<WebPagePopupImpl> m_pagePopup; 692 RefPtr<WebPagePopupImpl> m_pagePopup;
693 693
694 OwnPtr<WebDevToolsAgentPrivate> m_devToolsAgent; 694 OwnPtr<WebDevToolsAgentPrivate> m_devToolsAgent;
695 OwnPtr<PageOverlayList> m_pageOverlays; 695 OwnPtr<PageOverlayList> m_pageOverlays;
696 696
697 // Whether the webview is rendering transparently. 697 // Whether the webview is rendering transparently.
698 bool m_isTransparent; 698 bool m_isTransparent;
699 699
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 float m_topControlsLayoutHeight; 748 float m_topControlsLayoutHeight;
749 }; 749 };
750 750
751 // We have no ways to check if the specified WebView is an instance of 751 // We have no ways to check if the specified WebView is an instance of
752 // WebViewImpl because WebViewImpl is the only implementation of WebView. 752 // WebViewImpl because WebViewImpl is the only implementation of WebView.
753 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 753 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
754 754
755 } // namespace blink 755 } // namespace blink
756 756
757 #endif 757 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698