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

Side by Side Diff: content/browser/service_worker/service_worker_version.h

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_VERSION_H_ 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_VERSION_H_
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_VERSION_H_ 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_VERSION_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <functional> 10 #include <functional>
(...skipping 20 matching lines...) Expand all
31 #include "content/browser/service_worker/embedded_worker_instance.h" 31 #include "content/browser/service_worker/embedded_worker_instance.h"
32 #include "content/browser/service_worker/embedded_worker_status.h" 32 #include "content/browser/service_worker/embedded_worker_status.h"
33 #include "content/browser/service_worker/service_worker_metrics.h" 33 #include "content/browser/service_worker/service_worker_metrics.h"
34 #include "content/browser/service_worker/service_worker_script_cache_map.h" 34 #include "content/browser/service_worker/service_worker_script_cache_map.h"
35 #include "content/common/content_export.h" 35 #include "content/common/content_export.h"
36 #include "content/common/origin_trials/trial_token_validator.h" 36 #include "content/common/origin_trials/trial_token_validator.h"
37 #include "content/common/service_worker/service_worker_status_code.h" 37 #include "content/common/service_worker/service_worker_status_code.h"
38 #include "content/common/service_worker/service_worker_types.h" 38 #include "content/common/service_worker/service_worker_types.h"
39 #include "ipc/ipc_message.h" 39 #include "ipc/ipc_message.h"
40 #include "mojo/public/cpp/bindings/interface_ptr.h" 40 #include "mojo/public/cpp/bindings/interface_ptr.h"
41 #include "services/shell/public/cpp/interface_provider.h" 41 #include "services/service_manager/public/cpp/interface_provider.h"
42 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor kerEventResult.h" 42 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor kerEventResult.h"
43 #include "url/gurl.h" 43 #include "url/gurl.h"
44 #include "url/origin.h" 44 #include "url/origin.h"
45 45
46 // Windows headers will redefine SendMessage. 46 // Windows headers will redefine SendMessage.
47 #ifdef SendMessage 47 #ifdef SendMessage
48 #undef SendMessage 48 #undef SendMessage
49 #endif 49 #endif
50 50
51 namespace net { 51 namespace net {
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 854
855 // At this point |this| can have been deleted, so don't do anything other 855 // At this point |this| can have been deleted, so don't do anything other
856 // than returning. 856 // than returning.
857 857
858 return true; 858 return true;
859 } 859 }
860 860
861 } // namespace content 861 } // namespace content
862 862
863 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_VERSION_H_ 863 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_VERSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698