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

Unified Diff: cc/CCScrollbarAnimationControllerLinearFadeTest.cpp

Issue 10940002: Add wrapper container for a vector of OwnPtr<T> (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: converts the rest of the Vector<OwnPtr<T>>s Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: cc/CCScrollbarAnimationControllerLinearFadeTest.cpp
diff --git a/cc/CCScrollbarAnimationControllerLinearFadeTest.cpp b/cc/CCScrollbarAnimationControllerLinearFadeTest.cpp
index a40b930993c6246e97eca424ea6a872f17007cbf..0371765614a8d7c49466e091fb927ed598c498f4 100644
--- a/cc/CCScrollbarAnimationControllerLinearFadeTest.cpp
+++ b/cc/CCScrollbarAnimationControllerLinearFadeTest.cpp
@@ -21,7 +21,7 @@ protected:
{
m_scrollLayer = CCLayerImpl::create(1);
m_scrollLayer->addChild(CCLayerImpl::create(2));
- m_contentLayer = m_scrollLayer->children()[0].get();
+ m_contentLayer = m_scrollLayer->children()[0];
m_scrollbarLayer = CCScrollbarLayerImpl::create(3);
m_scrollLayer->setMaxScrollPosition(IntSize(50, 50));

Powered by Google App Engine
This is Rietveld 408576698