| Index: third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp b/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp
|
| index 4cca829844017d52b84a4c3ee5ba049246e08433..d2453a3e2566290b805b0b236be81e6d9cac477e 100644
|
| --- a/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp
|
| +++ b/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp
|
| @@ -69,7 +69,7 @@ void HTMLImportLoader::dispose()
|
| clearResource();
|
| }
|
|
|
| -void HTMLImportLoader::startLoading(const PassRefPtrWillBeRawPtr<RawResource>& resource)
|
| +void HTMLImportLoader::startLoading(const RawPtr<RawResource>& resource)
|
| {
|
| setResource(resource);
|
| }
|
| @@ -88,7 +88,7 @@ void HTMLImportLoader::responseReceived(Resource* resource, const ResourceRespon
|
|
|
| void HTMLImportLoader::dataReceived(Resource*, const char* data, size_t length)
|
| {
|
| - RefPtrWillBeRawPtr<DocumentWriter> protectingWriter(m_writer.get());
|
| + RawPtr<DocumentWriter> protectingWriter(m_writer.get());
|
| m_writer->addData(data, length);
|
| }
|
|
|
| @@ -143,7 +143,7 @@ void HTMLImportLoader::setState(State state)
|
| m_state = state;
|
|
|
| if (m_state == StateParsed || m_state == StateError || m_state == StateWritten) {
|
| - if (RefPtrWillBeRawPtr<DocumentWriter> writer = m_writer.release())
|
| + if (RawPtr<DocumentWriter> writer = m_writer.release())
|
| writer->end();
|
| }
|
|
|
| @@ -215,7 +215,7 @@ bool HTMLImportLoader::shouldBlockScriptExecution() const
|
| return firstImport()->state().shouldBlockScriptExecution();
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<CustomElementSyncMicrotaskQueue> HTMLImportLoader::microtaskQueue() const
|
| +RawPtr<CustomElementSyncMicrotaskQueue> HTMLImportLoader::microtaskQueue() const
|
| {
|
| return m_microtaskQueue;
|
| }
|
|
|