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

Unified Diff: content/utility/utility_process_control_impl.h

Issue 1295363003: Add ProcessControlImpl, the default ProcessControl implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed Created 5 years, 4 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/content_child.gypi ('k') | content/utility/utility_process_control_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/utility/utility_process_control_impl.h
diff --git a/content/utility/utility_process_control_impl.h b/content/utility/utility_process_control_impl.h
index dcc0a4d6179a1b1cddeabe616183a999a0aecb30..9f2a011b1df0387973f2eebadc576afc7235e8f6 100644
--- a/content/utility/utility_process_control_impl.h
+++ b/content/utility/utility_process_control_impl.h
@@ -2,47 +2,28 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef UTILITY_PROCESS_CONTROL_IMPL_H_
-#define UTILITY_PROCESS_CONTROL_IMPL_H_
-
-#include <map>
+#ifndef CONTENT_UTILITY_UTILITY_PROCESS_CONTROL_IMPL_H_
+#define CONTENT_UTILITY_UTILITY_PROCESS_CONTROL_IMPL_H_
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
-#include "content/common/process_control.mojom.h"
-#include "mojo/application/public/interfaces/application.mojom.h"
-#include "third_party/mojo/src/mojo/public/cpp/bindings/interface_request.h"
-
-class GURL;
-
-namespace mojo {
-namespace shell {
-class ApplicationLoader;
-} // namespace shell
-} // namespace mojo
+#include "content/child/process_control_impl.h"
namespace content {
-// Implementation of the ProcessControl interface. Exposed to the browser via
-// the utility process's ServiceRegistry.
-class UtilityProcessControlImpl : public ProcessControl {
+// Customization of ProcessControlImpl for the utility process. Exposed to the
+// browser via the utility process's ServiceRegistry.
+class UtilityProcessControlImpl : public ProcessControlImpl {
public:
UtilityProcessControlImpl();
~UtilityProcessControlImpl() override;
- using URLToLoaderMap = std::map<GURL, mojo::shell::ApplicationLoader*>;
-
- // ProcessControl:
- void LoadApplication(const mojo::String& url,
- mojo::InterfaceRequest<mojo::Application> request,
- const LoadApplicationCallback& callback) override;
+ // ProcessControlImpl:
+ void RegisterApplicationLoaders(URLToLoaderMap* url_to_loader_map) override;
private:
- URLToLoaderMap url_to_loader_map_;
-
DISALLOW_COPY_AND_ASSIGN(UtilityProcessControlImpl);
};
} // namespace content
-#endif // UTILITY_PROCESS_CONTROL_IMPL_H_
+#endif // CONTENT_UTILITY_UTILITY_PROCESS_CONTROL_IMPL_H_
« no previous file with comments | « content/content_child.gypi ('k') | content/utility/utility_process_control_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698