Index: Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp |
diff --git a/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp b/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp |
index aadc42a0e63dc22e366963484003b25c8b85e8f9..f5ef5d9e673d0cef8df64fd4d83c0d5fa4cb7f78 100644 |
--- a/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp |
+++ b/Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp |
@@ -175,7 +175,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)); |
@@ -189,7 +189,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)); |
@@ -314,7 +314,7 @@ TEST_F(ServiceWorkerContainerTest, RegisterUnregister_NonHttpsSecureOriginDelega |
StubWebServiceWorkerProvider stubProvider; |
provide(stubProvider.provider()); |
- RefPtrWillBeRawPtr<ServiceWorkerContainer> container = ServiceWorkerContainer::create(executionContext()); |
+ ServiceWorkerContainer* container = ServiceWorkerContainer::create(executionContext()); |
// register |
{ |