| Index: third_party/WebKit/Source/core/css/MediaQuery.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/MediaQuery.cpp b/third_party/WebKit/Source/core/css/MediaQuery.cpp
|
| index f440b1c1ced5ca7780bfc08086457829c985638d..6ba95d15a3bbec05a5832f17ec90da69d492854f 100644
|
| --- a/third_party/WebKit/Source/core/css/MediaQuery.cpp
|
| +++ b/third_party/WebKit/Source/core/css/MediaQuery.cpp
|
| @@ -33,6 +33,7 @@
|
| #include "core/html/parser/HTMLParserIdioms.h"
|
| #include "wtf/NonCopyingSort.h"
|
| #include "wtf/text/StringBuilder.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -134,7 +135,7 @@ String MediaQuery::cssText() const
|
|
|
| DEFINE_TRACE(MediaQuery)
|
| {
|
| - // We don't support tracing of vectors of OwnPtrs (ie. OwnPtr<Vector<OwnPtr<MediaQuery>>>).
|
| + // We don't support tracing of vectors of OwnPtrs (ie. std::unique_ptr<Vector<std::unique_ptr<MediaQuery>>>).
|
| // Since this is a transitional object we are just ifdef'ing it out when oilpan is not enabled.
|
| visitor->trace(m_expressions);
|
| }
|
|
|