Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Unified Diff: Source/modules/serviceworkers/ServiceWorkerContainerTest.cpp

Issue 478693005: Oilpan: Ship Oilpan for serviceworkers/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
{
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerContainer.idl ('k') | Source/modules/serviceworkers/ServiceWorkerGlobalScope.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698