| Index: third_party/WebKit/Source/core/dom/StyleEngineTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/StyleEngineTest.cpp b/third_party/WebKit/Source/core/dom/StyleEngineTest.cpp
|
| index 1708917c5ee5b559f11bb81804c2a8de6e405f72..bae1f782f0001587bca6281dd0080c6692ceb4ea 100644
|
| --- a/third_party/WebKit/Source/core/dom/StyleEngineTest.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/StyleEngineTest.cpp
|
| @@ -34,7 +34,7 @@ void StyleEngineTest::SetUp()
|
|
|
| TEST_F(StyleEngineTest, DocumentDirtyAfterInject)
|
| {
|
| - RefPtrWillBeRawPtr<StyleSheetContents> parsedSheet = StyleSheetContents::create(CSSParserContext(document(), nullptr));
|
| + RawPtr<StyleSheetContents> parsedSheet = StyleSheetContents::create(CSSParserContext(document(), nullptr));
|
| parsedSheet->parseString("div {}");
|
| styleEngine().injectAuthorSheet(parsedSheet);
|
| document().view()->updateAllLifecyclePhases();
|
| @@ -54,7 +54,7 @@ TEST_F(StyleEngineTest, AnalyzedInject)
|
|
|
| unsigned beforeCount = styleEngine().styleForElementCount();
|
|
|
| - RefPtrWillBeRawPtr<StyleSheetContents> parsedSheet = StyleSheetContents::create(CSSParserContext(document(), nullptr));
|
| + RawPtr<StyleSheetContents> parsedSheet = StyleSheetContents::create(CSSParserContext(document(), nullptr));
|
| parsedSheet->parseString("#t1 { color: green }");
|
| styleEngine().injectAuthorSheet(parsedSheet);
|
| document().view()->updateAllLifecyclePhases();
|
|
|