Commit 21c4ac16 authored by ager@chromium.org's avatar ager@chromium.org

Oilpan: Workaround for crash on quora and geek-and-poke. There is a...

Oilpan: Workaround for crash on quora and geek-and-poke. There is a finalization issue that we need to resolve in CSSCursorImageValue.

R=erik.corry@gmail.com, haraken@chromium.org, wibling@chromium.org
BUG=347943
NOTRY=true

Review URL: https://codereview.chromium.org/185723006

git-svn-id: svn://svn.chromium.org/blink/trunk@168385 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent fe664551
...@@ -67,7 +67,11 @@ private: ...@@ -67,7 +67,11 @@ private:
String cachedImageURL(); String cachedImageURL();
void clearImageResource(); void clearImageResource();
RefPtrWillBeMember<CSSValue> m_imageValue; // FIXME: oilpan: This should be a Member but we need to resolve
// finalization order issues first. The CSSCursorImageValue
// destructor uses m_imageValue. Leaving it as a RefPtr as a
// workaround for now.
RefPtr<CSSValue> m_imageValue;
bool m_hasHotSpot; bool m_hasHotSpot;
IntPoint m_hotSpot; IntPoint m_hotSpot;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment