| Index: third_party/WebKit/Source/core/frame/RemoteDOMWindow.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/RemoteDOMWindow.cpp b/third_party/WebKit/Source/core/frame/RemoteDOMWindow.cpp
|
| index a85da55067c854cb75d8db2a663f552ddcf14aef..83c5c704e4d9aca715e7a0777b6df607158f1209 100644
|
| --- a/third_party/WebKit/Source/core/frame/RemoteDOMWindow.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/RemoteDOMWindow.cpp
|
| @@ -287,19 +287,19 @@ void RemoteDOMWindow::resizeTo(int width, int height) const
|
| ASSERT_NOT_REACHED();
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<MediaQueryList> RemoteDOMWindow::matchMedia(const String&)
|
| +RawPtr<MediaQueryList> RemoteDOMWindow::matchMedia(const String&)
|
| {
|
| ASSERT_NOT_REACHED();
|
| return nullptr;
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<CSSStyleDeclaration> RemoteDOMWindow::getComputedStyle(Element*, const String& pseudoElt) const
|
| +RawPtr<CSSStyleDeclaration> RemoteDOMWindow::getComputedStyle(Element*, const String& pseudoElt) const
|
| {
|
| ASSERT_NOT_REACHED();
|
| return nullptr;
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<CSSRuleList> RemoteDOMWindow::getMatchedCSSRules(Element*, const String& pseudoElt) const
|
| +RawPtr<CSSRuleList> RemoteDOMWindow::getMatchedCSSRules(Element*, const String& pseudoElt) const
|
| {
|
| ASSERT_NOT_REACHED();
|
| return nullptr;
|
|
|