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

Side by Side Diff: Source/web/WebSharedWorkerImpl.cpp

Issue 1262603004: Move ServiceWorker public headers to public/{web,platform}/modules/serviceworker (3/3) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/web/WebEmbeddedWorkerImplTest.cpp ('k') | public/platform/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 #include "platform/network/ResourceResponse.h" 57 #include "platform/network/ResourceResponse.h"
58 #include "platform/weborigin/KURL.h" 58 #include "platform/weborigin/KURL.h"
59 #include "platform/weborigin/SecurityOrigin.h" 59 #include "platform/weborigin/SecurityOrigin.h"
60 #include "public/platform/WebFileError.h" 60 #include "public/platform/WebFileError.h"
61 #include "public/platform/WebMessagePortChannel.h" 61 #include "public/platform/WebMessagePortChannel.h"
62 #include "public/platform/WebString.h" 62 #include "public/platform/WebString.h"
63 #include "public/platform/WebURL.h" 63 #include "public/platform/WebURL.h"
64 #include "public/platform/WebURLRequest.h" 64 #include "public/platform/WebURLRequest.h"
65 #include "public/web/WebDevToolsAgent.h" 65 #include "public/web/WebDevToolsAgent.h"
66 #include "public/web/WebFrame.h" 66 #include "public/web/WebFrame.h"
67 #include "public/web/WebServiceWorkerNetworkProvider.h"
68 #include "public/web/WebSettings.h" 67 #include "public/web/WebSettings.h"
69 #include "public/web/WebView.h" 68 #include "public/web/WebView.h"
70 #include "public/web/WebWorkerContentSettingsClientProxy.h" 69 #include "public/web/WebWorkerContentSettingsClientProxy.h"
70 #include "public/web/modules/serviceworker/WebServiceWorkerNetworkProvider.h"
71 #include "web/LocalFileSystemClient.h" 71 #include "web/LocalFileSystemClient.h"
72 #include "web/WebDataSourceImpl.h" 72 #include "web/WebDataSourceImpl.h"
73 #include "web/WebLocalFrameImpl.h" 73 #include "web/WebLocalFrameImpl.h"
74 #include "web/WorkerContentSettingsClient.h" 74 #include "web/WorkerContentSettingsClient.h"
75 #include "wtf/Functional.h" 75 #include "wtf/Functional.h"
76 #include "wtf/MainThread.h" 76 #include "wtf/MainThread.h"
77 77
78 namespace blink { 78 namespace blink {
79 79
80 // TODO(toyoshim): Share implementation with WebEmbeddedWorkerImpl as much as 80 // TODO(toyoshim): Share implementation with WebEmbeddedWorkerImpl as much as
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 if (devtoolsAgent) 394 if (devtoolsAgent)
395 devtoolsAgent->dispatchOnInspectorBackend(message); 395 devtoolsAgent->dispatchOnInspectorBackend(message);
396 } 396 }
397 397
398 WebSharedWorker* WebSharedWorker::create(WebSharedWorkerClient* client) 398 WebSharedWorker* WebSharedWorker::create(WebSharedWorkerClient* client)
399 { 399 {
400 return new WebSharedWorkerImpl(client); 400 return new WebSharedWorkerImpl(client);
401 } 401 }
402 402
403 } // namespace blink 403 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebEmbeddedWorkerImplTest.cpp ('k') | public/platform/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698