Commit 8885f9fa authored by haraken@chromium.org's avatar haraken@chromium.org

Oilpan: build fix after r176427

TBR=tkent

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

git-svn-id: svn://svn.chromium.org/blink/trunk@176476 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent c30b432d
...@@ -41,7 +41,7 @@ namespace WebCore { ...@@ -41,7 +41,7 @@ namespace WebCore {
class NamedNodesCollection FINAL : public NodeList { class NamedNodesCollection FINAL : public NodeList {
public: public:
static PassRefPtrWillBeRawPtr<NamedNodesCollection> create(const WillBeHeapVector<RefPtrWillBeMember<Element> >& nodes) static PassRefPtrWillBeRawPtr<NodeList> create(const WillBeHeapVector<RefPtrWillBeMember<Element> >& nodes)
{ {
return adoptRefWillBeNoop(new NamedNodesCollection(nodes)); return adoptRefWillBeNoop(new NamedNodesCollection(nodes));
} }
......
...@@ -39,7 +39,7 @@ void PageAnimator::serviceScriptedAnimations(double monotonicAnimationStartTime) ...@@ -39,7 +39,7 @@ void PageAnimator::serviceScriptedAnimations(double monotonicAnimationStartTime)
} }
} }
Vector<RefPtr<Document> > documents; WillBeHeapVector<RefPtrWillBeMember<Document> > documents;
for (Frame* frame = m_page->mainFrame(); frame; frame = frame->tree().traverseNext()) { for (Frame* frame = m_page->mainFrame(); frame; frame = frame->tree().traverseNext()) {
if (frame->isLocalFrame()) if (frame->isLocalFrame())
documents.append(toLocalFrame(frame)->document()); documents.append(toLocalFrame(frame)->document());
......
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