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

Unified Diff: third_party/WebKit/Source/web/ColorChooserPopupUIController.h

Issue 1442543003: Oilpan: trace ColorChooserPopupUIController::m_chromeClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/ColorChooserPopupUIController.h
diff --git a/third_party/WebKit/Source/web/ColorChooserPopupUIController.h b/third_party/WebKit/Source/web/ColorChooserPopupUIController.h
index 4e3f10f06a8711782a3ca4bf33defad6f020a579..d3e6d7e6bcf5bf88f1e54dab349224b4891b29de 100644
--- a/third_party/WebKit/Source/web/ColorChooserPopupUIController.h
+++ b/third_party/WebKit/Source/web/ColorChooserPopupUIController.h
@@ -64,12 +64,18 @@ public:
Element& ownerElement() override;
void didClosePopup() override;
+ DEFINE_INLINE_VIRTUAL_TRACE()
+ {
+ visitor->trace(m_chromeClient);
+ ColorChooserUIController::trace(visitor);
+ }
+
private:
ColorChooserPopupUIController(LocalFrame*, ChromeClientImpl*, ColorChooserClient*);
void openPopup();
- ChromeClientImpl* m_chromeClient;
+ RawPtrWillBeMember<ChromeClientImpl> m_chromeClient;
haraken 2015/11/12 14:17:29 It seems that the destructor is touching m_chromeC
sof 2015/11/13 07:35:01 Good catch. Hmm, given that ChromeClientImpl is h
PagePopup* m_popup;
Locale& m_locale;
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698