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

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

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 years, 8 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 <stdint.h>
8 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
9 #include "platform/loader/fetch/CachedMetadataHandler.h" 10 #include "platform/loader/fetch/CachedMetadataHandler.h"
10 #include "platform/weborigin/KURL.h" 11 #include "platform/weborigin/KURL.h"
11 #include "wtf/Vector.h" 12 #include "platform/wtf/Vector.h"
12 #include <stdint.h>
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class WorkerGlobalScope; 16 class WorkerGlobalScope;
17 class CachedMetadata; 17 class CachedMetadata;
18 18
19 class ServiceWorkerScriptCachedMetadataHandler : public CachedMetadataHandler { 19 class ServiceWorkerScriptCachedMetadataHandler : public CachedMetadataHandler {
20 public: 20 public:
21 static ServiceWorkerScriptCachedMetadataHandler* Create( 21 static ServiceWorkerScriptCachedMetadataHandler* Create(
22 WorkerGlobalScope* worker_global_scope, 22 WorkerGlobalScope* worker_global_scope,
(...skipping 19 matching lines...) Expand all
42 const Vector<char>* meta_data); 42 const Vector<char>* meta_data);
43 43
44 Member<WorkerGlobalScope> worker_global_scope_; 44 Member<WorkerGlobalScope> worker_global_scope_;
45 KURL script_url_; 45 KURL script_url_;
46 RefPtr<CachedMetadata> cached_metadata_; 46 RefPtr<CachedMetadata> cached_metadata_;
47 }; 47 };
48 48
49 } // namespace blink 49 } // namespace blink
50 50
51 #endif // ServiceWorkerScriptCachedMetadataHandler_h 51 #endif // ServiceWorkerScriptCachedMetadataHandler_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698