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

Unified Diff: mojo/services/view_manager/view_manager_connection_unittest.cc

Issue 289063015: Mojo: Remove SetClient from generated interfaces (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 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/view_manager_connection_unittest.cc
diff --git a/mojo/services/view_manager/view_manager_connection_unittest.cc b/mojo/services/view_manager/view_manager_connection_unittest.cc
index 56caa8b431c455f2c535ba4c890f6686408c136f..fe507b5ecc2f1cd70f64ddfcc3e34d1f98af465f 100644
--- a/mojo/services/view_manager/view_manager_connection_unittest.cc
+++ b/mojo/services/view_manager/view_manager_connection_unittest.cc
@@ -377,7 +377,7 @@ class ViewManagerConnectionTest : public testing::Test {
test_helper_.Init();
ConnectTo(test_helper_.shell(), "mojo:mojo_view_manager", &view_manager_);
- view_manager_->SetClient(&client_);
+ view_manager_.set_client(&client_);
client_.WaitForId();
client_.GetAndClearChanges();
@@ -387,7 +387,7 @@ class ViewManagerConnectionTest : public testing::Test {
// Creates a second connection to the viewmanager.
void EstablishSecondConnection() {
ConnectTo(test_helper_.shell(), "mojo:mojo_view_manager", &view_manager2_);
- view_manager2_->SetClient(&client2_);
+ view_manager2_.set_client(&client2_);
client2_.WaitForId();
client2_.GetAndClearChanges();
« no previous file with comments | « mojo/services/public/cpp/view_manager/lib/view_manager_synchronizer.cc ('k') | mojo/shell/app_child_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698