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

Side by Side Diff: third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp

Issue 2746113002: platform/loader: move network/Resource* to loader/fetch (Closed)
Patch Set: git rebase master Created 3 years, 9 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 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 20 matching lines...) Expand all
31 #include "web/SharedWorkerRepositoryClientImpl.h" 31 #include "web/SharedWorkerRepositoryClientImpl.h"
32 32
33 #include <memory> 33 #include <memory>
34 #include <utility> 34 #include <utility>
35 #include "core/dom/ExecutionContext.h" 35 #include "core/dom/ExecutionContext.h"
36 #include "core/events/Event.h" 36 #include "core/events/Event.h"
37 #include "core/frame/UseCounter.h" 37 #include "core/frame/UseCounter.h"
38 #include "core/frame/csp/ContentSecurityPolicy.h" 38 #include "core/frame/csp/ContentSecurityPolicy.h"
39 #include "core/inspector/InspectorInstrumentation.h" 39 #include "core/inspector/InspectorInstrumentation.h"
40 #include "core/workers/SharedWorker.h" 40 #include "core/workers/SharedWorker.h"
41 #include "platform/network/ResourceResponse.h" 41 #include "platform/loader/fetch/ResourceResponse.h"
42 #include "public/platform/WebContentSecurityPolicy.h" 42 #include "public/platform/WebContentSecurityPolicy.h"
43 #include "public/platform/WebMessagePortChannel.h" 43 #include "public/platform/WebMessagePortChannel.h"
44 #include "public/platform/WebString.h" 44 #include "public/platform/WebString.h"
45 #include "public/platform/WebURL.h" 45 #include "public/platform/WebURL.h"
46 #include "public/web/WebFrameClient.h" 46 #include "public/web/WebFrameClient.h"
47 #include "public/web/WebKit.h" 47 #include "public/web/WebKit.h"
48 #include "public/web/WebSharedWorker.h" 48 #include "public/web/WebSharedWorker.h"
49 #include "public/web/WebSharedWorkerConnectListener.h" 49 #include "public/web/WebSharedWorkerConnectListener.h"
50 #include "public/web/WebSharedWorkerCreationErrors.h" 50 #include "public/web/WebSharedWorkerCreationErrors.h"
51 #include "public/web/WebSharedWorkerRepositoryClient.h" 51 #include "public/web/WebSharedWorkerRepositoryClient.h"
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 void SharedWorkerRepositoryClientImpl::documentDetached(Document* document) { 151 void SharedWorkerRepositoryClientImpl::documentDetached(Document* document) {
152 DCHECK(m_client); 152 DCHECK(m_client);
153 m_client->documentDetached(getId(document)); 153 m_client->documentDetached(getId(document));
154 } 154 }
155 155
156 SharedWorkerRepositoryClientImpl::SharedWorkerRepositoryClientImpl( 156 SharedWorkerRepositoryClientImpl::SharedWorkerRepositoryClientImpl(
157 WebSharedWorkerRepositoryClient* client) 157 WebSharedWorkerRepositoryClient* client)
158 : m_client(client) {} 158 : m_client(client) {}
159 159
160 } // namespace blink 160 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/AssertMatchingEnums.cpp ('k') | third_party/WebKit/Source/web/WebAssociatedURLLoaderImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698