Index: Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp |
diff --git a/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp b/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp |
index 04b0ebf5f289470a43a2be5b179a8d119ccd6ae2..9311eac583bbce76d6f6d68b76b341254e0dee6f 100644 |
--- a/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp |
+++ b/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp |
@@ -181,7 +181,7 @@ protected: |
// the provider. |
provide(adoptPtr(new NotReachedWebServiceWorkerProvider())); |
- RefPtrWillBeRawPtr<ServiceWorkerContainer> container = ServiceWorkerContainer::create(executionContext()); |
+ ServiceWorkerContainer* container = ServiceWorkerContainer::create(executionContext()); |
ScriptState::Scope scriptScope(scriptState()); |
Dictionary options = Dictionary::createEmpty(isolate()); |
EXPECT_TRUE(options.set("scope", scope)); |
@@ -195,7 +195,7 @@ protected: |
{ |
provide(adoptPtr(new NotReachedWebServiceWorkerProvider())); |
- RefPtrWillBeRawPtr<ServiceWorkerContainer> container = ServiceWorkerContainer::create(executionContext()); |
+ ServiceWorkerContainer* container = ServiceWorkerContainer::create(executionContext()); |
ScriptState::Scope scriptScope(scriptState()); |
Dictionary options = Dictionary::createEmpty(isolate()); |
EXPECT_TRUE(options.set("scope", scope)); |
@@ -321,7 +321,7 @@ TEST_F(ServiceWorkerContainerTest, RegisterUnregister_NonHttpsSecureOriginDelega |
StubWebServiceWorkerProvider stubProvider; |
provide(stubProvider.provider()); |
- RefPtrWillBeRawPtr<ServiceWorkerContainer> container = ServiceWorkerContainer::create(executionContext()); |
+ ServiceWorkerContainer* container = ServiceWorkerContainer::create(executionContext()); |
// register |
{ |