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