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

Side by Side Diff: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerScriptCachedMetadataHandler.h

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First attempt to land. Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ServiceWorkerScriptCachedMetadataHandler_h 5 #ifndef ServiceWorkerScriptCachedMetadataHandler_h
6 #define ServiceWorkerScriptCachedMetadataHandler_h 6 #define ServiceWorkerScriptCachedMetadataHandler_h
7 7
8 #include "core/fetch/CachedMetadataHandler.h" 8 #include "core/fetch/CachedMetadataHandler.h"
9 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
10 #include "platform/weborigin/KURL.h" 10 #include "platform/weborigin/KURL.h"
11 #include "wtf/PassOwnPtr.h"
12 #include "wtf/Vector.h" 11 #include "wtf/Vector.h"
13 12
14 namespace blink { 13 namespace blink {
15 14
16 class WorkerGlobalScope; 15 class WorkerGlobalScope;
17 class CachedMetadata; 16 class CachedMetadata;
18 17
19 class ServiceWorkerScriptCachedMetadataHandler : public CachedMetadataHandler { 18 class ServiceWorkerScriptCachedMetadataHandler : public CachedMetadataHandler {
20 public: 19 public:
21 static ServiceWorkerScriptCachedMetadataHandler* create(WorkerGlobalScope* w orkerGlobalScope, const KURL& scriptURL, const Vector<char>* metaData) 20 static ServiceWorkerScriptCachedMetadataHandler* create(WorkerGlobalScope* w orkerGlobalScope, const KURL& scriptURL, const Vector<char>* metaData)
(...skipping 11 matching lines...) Expand all
33 ServiceWorkerScriptCachedMetadataHandler(WorkerGlobalScope*, const KURL& scr iptURL, const Vector<char>* metaData); 32 ServiceWorkerScriptCachedMetadataHandler(WorkerGlobalScope*, const KURL& scr iptURL, const Vector<char>* metaData);
34 33
35 Member<WorkerGlobalScope> m_workerGlobalScope; 34 Member<WorkerGlobalScope> m_workerGlobalScope;
36 KURL m_scriptURL; 35 KURL m_scriptURL;
37 RefPtr<CachedMetadata> m_cachedMetadata; 36 RefPtr<CachedMetadata> m_cachedMetadata;
38 }; 37 };
39 38
40 } // namespace blink 39 } // namespace blink
41 40
42 #endif // ServiceWorkerScriptCachedMetadataHandler_h 41 #endif // ServiceWorkerScriptCachedMetadataHandler_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698