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

Side by Side Diff: content/browser/service_worker/embedded_worker_test_helper.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_EMBEDDED_WORKER_TEST_HELPER_H_ 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_EMBEDDED_WORKER_TEST_HELPER_H_
6 #define CONTENT_BROWSER_SERVICE_WORKER_EMBEDDED_WORKER_TEST_HELPER_H_ 6 #define CONTENT_BROWSER_SERVICE_WORKER_EMBEDDED_WORKER_TEST_HELPER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/callback.h" 14 #include "base/callback.h"
15 #include "base/containers/hash_tables.h" 15 #include "base/containers/hash_tables.h"
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/memory/weak_ptr.h" 17 #include "base/memory/weak_ptr.h"
18 #include "base/optional.h" 18 #include "base/optional.h"
19 #include "base/time/time.h" 19 #include "base/time/time.h"
20 #include "content/common/service_worker/embedded_worker.mojom.h" 20 #include "content/common/service_worker/embedded_worker.mojom.h"
21 #include "content/common/service_worker/service_worker_status_code.h" 21 #include "content/common/service_worker/service_worker_status_code.h"
22 #include "ipc/ipc_listener.h" 22 #include "ipc/ipc_listener.h"
23 #include "ipc/ipc_test_sink.h" 23 #include "ipc/ipc_test_sink.h"
24 #include "mojo/public/cpp/bindings/binding.h" 24 #include "mojo/public/cpp/bindings/binding.h"
25 #include "services/shell/public/interfaces/interface_provider.mojom.h" 25 #include "services/service_manager/public/interfaces/interface_provider.mojom.h"
26 #include "testing/gtest/include/gtest/gtest.h" 26 #include "testing/gtest/include/gtest/gtest.h"
27 #include "url/gurl.h" 27 #include "url/gurl.h"
28 28
29 class GURL; 29 class GURL;
30 struct ServiceWorkerMsg_ExtendableMessageEvent_Params; 30 struct ServiceWorkerMsg_ExtendableMessageEvent_Params;
31 31
32 namespace shell { 32 namespace shell {
33 class InterfaceProvider; 33 class InterfaceProvider;
34 class InterfaceRegistry; 34 class InterfaceRegistry;
35 } 35 }
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 message_port_message_filters_; 268 message_port_message_filters_;
269 269
270 base::WeakPtrFactory<EmbeddedWorkerTestHelper> weak_factory_; 270 base::WeakPtrFactory<EmbeddedWorkerTestHelper> weak_factory_;
271 271
272 DISALLOW_COPY_AND_ASSIGN(EmbeddedWorkerTestHelper); 272 DISALLOW_COPY_AND_ASSIGN(EmbeddedWorkerTestHelper);
273 }; 273 };
274 274
275 } // namespace content 275 } // namespace content
276 276
277 #endif // CONTENT_BROWSER_SERVICE_WORKER_EMBEDDED_WORKER_TEST_HELPER_H_ 277 #endif // CONTENT_BROWSER_SERVICE_WORKER_EMBEDDED_WORKER_TEST_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698