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

Unified Diff: mojo/services/view_manager/public/cpp/lib/view_manager_client_impl.h

Issue 858103002: Remove [Client=] annotation from ServiceProvider (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: rebase for trybots (no code changes from ps2) Created 5 years, 11 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
Index: mojo/services/view_manager/public/cpp/lib/view_manager_client_impl.h
diff --git a/mojo/services/view_manager/public/cpp/lib/view_manager_client_impl.h b/mojo/services/view_manager/public/cpp/lib/view_manager_client_impl.h
index 01812cb29c5305e89f48bd2572b9625679c4527e..c8ae5c4031fd3d4c3013a884e57ed7c8d64d9281 100644
--- a/mojo/services/view_manager/public/cpp/lib/view_manager_client_impl.h
+++ b/mojo/services/view_manager/public/cpp/lib/view_manager_client_impl.h
@@ -63,7 +63,8 @@ class ViewManagerClientImpl : public ViewManager,
void Embed(const String& url, Id view_id);
void Embed(const String& url,
Id view_id,
- InterfaceRequest<ServiceProvider> service_provider);
+ InterfaceRequest<ServiceProvider> services,
+ ServiceProviderPtr exposed_services);
void set_change_acked_callback(const base::Callback<void(void)>& callback) {
change_acked_callback_ = callback;
@@ -95,7 +96,8 @@ class ViewManagerClientImpl : public ViewManager,
void OnEmbed(ConnectionSpecificId connection_id,
const String& creator_url,
ViewDataPtr root,
- InterfaceRequest<ServiceProvider> parent_services,
+ InterfaceRequest<ServiceProvider> services,
+ ServiceProviderPtr exposed_services,
ScopedMessagePipeHandle window_manager_pipe) override;
void OnEmbeddedAppDisconnected(Id view_id) override;
void OnViewBoundsChanged(Id view_id,

Powered by Google App Engine
This is Rietveld 408576698