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

Unified Diff: mojo/shell/connect_to_application_params.h

Issue 1686223002: Move InterfaceProvider into the shell::mojom namespace like the rest of the shell interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 10 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 | « mojo/shell/capability_filter_test.cc ('k') | mojo/shell/connect_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/connect_to_application_params.h
diff --git a/mojo/shell/connect_to_application_params.h b/mojo/shell/connect_to_application_params.h
index 07ade15e28234f2ef260df3d934368ced85f3ea2..28a1ed6e4e25c72d8e0c6114bc76cf80776a07d4 100644
--- a/mojo/shell/connect_to_application_params.h
+++ b/mojo/shell/connect_to_application_params.h
@@ -50,17 +50,17 @@ class ConnectToApplicationParams {
return std::move(target_url_request_);
}
- void set_remote_interfaces(InterfaceRequest<InterfaceProvider> value) {
+ void set_remote_interfaces(shell::mojom::InterfaceProviderRequest value) {
remote_interfaces_ = std::move(value);
}
- InterfaceRequest<InterfaceProvider> TakeRemoteInterfaces() {
+ shell::mojom::InterfaceProviderRequest TakeRemoteInterfaces() {
return std::move(remote_interfaces_);
}
- void set_local_interfaces(InterfaceProviderPtr value) {
+ void set_local_interfaces(shell::mojom::InterfaceProviderPtr value) {
local_interfaces_ = std::move(value);
}
- InterfaceProviderPtr TakeLocalInterfaces() {
+ shell::mojom::InterfaceProviderPtr TakeLocalInterfaces() {
return std::move(local_interfaces_);
}
@@ -91,8 +91,8 @@ class ConnectToApplicationParams {
// remains unchanged.
URLRequestPtr target_url_request_;
- InterfaceRequest<InterfaceProvider> remote_interfaces_;
- InterfaceProviderPtr local_interfaces_;
+ shell::mojom::InterfaceProviderRequest remote_interfaces_;
+ shell::mojom::InterfaceProviderPtr local_interfaces_;
base::Closure on_application_end_;
shell::mojom::Shell::ConnectToApplicationCallback connect_callback_;
« no previous file with comments | « mojo/shell/capability_filter_test.cc ('k') | mojo/shell/connect_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698