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

Unified Diff: Source/core/frame/PageScaleConstraintsSet.h

Issue 1162033003: Oilpan: fix build after r196078. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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
« no previous file with comments | « Source/core/frame/FrameHost.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/PageScaleConstraintsSet.h
diff --git a/Source/core/frame/PageScaleConstraintsSet.h b/Source/core/frame/PageScaleConstraintsSet.h
index 4b09cd11e126610f4f0f97e2b664b5d42eee85ec..da79c7f4b11b49c83791850839a68a5166216b74 100644
--- a/Source/core/frame/PageScaleConstraintsSet.h
+++ b/Source/core/frame/PageScaleConstraintsSet.h
@@ -35,7 +35,7 @@
#include "core/frame/PageScaleConstraints.h"
#include "platform/Length.h"
#include "platform/geometry/IntSize.h"
-#include "platform/heap/Handle.h"
+#include "wtf/PassOwnPtr.h"
namespace blink {
@@ -43,9 +43,9 @@ namespace blink {
// the meta viewport tag and other sources.
class PageScaleConstraintsSet {
public:
- static PassOwnPtrWillBeRawPtr<PageScaleConstraintsSet> create()
+ static PassOwnPtr<PageScaleConstraintsSet> create()
{
- return adoptPtrWillBeNoop(new PageScaleConstraintsSet);
+ return adoptPtr(new PageScaleConstraintsSet);
}
void setDefaultConstraints(const PageScaleConstraints&);
« no previous file with comments | « Source/core/frame/FrameHost.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698