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

Unified Diff: mandoline/tab/public/cpp/web_view.cc

Issue 1314953002: Rename ViewManagerService,ViewManagerClient -> ViewTree,ViewTreeClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . 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 | « mandoline/tab/frame_tree_delegate.h ('k') | mandoline/tab/public/interfaces/web_view.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/tab/public/cpp/web_view.cc
diff --git a/mandoline/tab/public/cpp/web_view.cc b/mandoline/tab/public/cpp/web_view.cc
index d8773c220088067764b699bb3ebaabce6710fc4b..1756cb01508e12f011aa3a6ed60015a56bea8edf 100644
--- a/mandoline/tab/public/cpp/web_view.cc
+++ b/mandoline/tab/public/cpp/web_view.cc
@@ -25,9 +25,9 @@ void WebView::Init(mojo::ApplicationImpl* app, mojo::View* view) {
app->ConnectToService(request.Pass(), &factory);
factory->CreateWebView(client.Pass(), GetProxy(&web_view_));
- mojo::ViewManagerClientPtr view_manager_client;
- web_view_->GetViewManagerClient(GetProxy(&view_manager_client));
- view->Embed(view_manager_client.Pass());
+ mojo::ViewTreeClientPtr view_tree_client;
+ web_view_->GetViewTreeClient(GetProxy(&view_tree_client));
+ view->Embed(view_tree_client.Pass());
}
} // namespace web_view
« no previous file with comments | « mandoline/tab/frame_tree_delegate.h ('k') | mandoline/tab/public/interfaces/web_view.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698