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

Unified Diff: content/public/common/service_info.h

Issue 2398783002: Rename a bunch of Mojo Application stuff to reference Services. (Closed)
Patch Set: . 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/common/mojo_shell_connection.h ('k') | content/public/common/service_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/service_info.h
diff --git a/content/public/common/service_info.h b/content/public/common/service_info.h
new file mode 100644
index 0000000000000000000000000000000000000000..7acd37a591ef107cd7ba6142a2b02a48d6a07f50
--- /dev/null
+++ b/content/public/common/service_info.h
@@ -0,0 +1,50 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_COMMON_SERVICE_INFO_H_
+#define CONTENT_PUBLIC_COMMON_SERVICE_INFO_H_
+
+#include <memory>
+
+#include "base/callback.h"
+#include "base/memory/ref_counted.h"
+#include "base/single_thread_task_runner.h"
+#include "content/common/content_export.h"
+
+namespace shell {
+class Service;
+}
+
+namespace content {
+
+// ServiceInfo provides details necessary to construct and bind new instances
+// of embedded services.
+struct CONTENT_EXPORT ServiceInfo {
+ using ServiceFactory = base::Callback<std::unique_ptr<shell::Service>(
+ const base::Closure& quit_closure)>;
+
+ ServiceInfo();
+ ServiceInfo(const ServiceInfo& other);
+ ~ServiceInfo();
+
+ // A factory function which will be called to produce a new Service
+ // instance for this service whenever one is needed.
+ ServiceFactory factory;
+
+ // The task runner on which to construct and bind new Service instances
+ // for this service. If null, behavior depends on the value of
+ // |use_own_thread| below.
+ scoped_refptr<base::SingleThreadTaskRunner> task_runner;
+
+ // If |task_runner| is null, setting this to |true| will give each instance of
+ // this service its own thread to run on. Setting this to |false| (the
+ // default) will instead run the service on the main thread's task runner.
+ //
+ // If |task_runner| is not null, this value is ignored.
+ bool use_own_thread = false;
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_COMMON_SERVICE_INFO_H_
« no previous file with comments | « content/public/common/mojo_shell_connection.h ('k') | content/public/common/service_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698