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

Unified Diff: components/view_manager/public/cpp/tests/view_manager_test_base.h

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
Index: components/view_manager/public/cpp/tests/view_manager_test_base.h
diff --git a/components/view_manager/public/cpp/tests/view_manager_test_base.h b/components/view_manager/public/cpp/tests/view_manager_test_base.h
index 92bdbbab821abc2b6b27dbdd4cd2ad4ab0fba943..0c3082cf310d312c2527db6a46d79533c99156c9 100644
--- a/components/view_manager/public/cpp/tests/view_manager_test_base.h
+++ b/components/view_manager/public/cpp/tests/view_manager_test_base.h
@@ -7,7 +7,7 @@
#include "base/memory/scoped_ptr.h"
#include "components/view_manager/public/cpp/view_manager_delegate.h"
-#include "components/view_manager/public/interfaces/view_manager.mojom.h"
+#include "components/view_manager/public/interfaces/view_tree.mojom.h"
#include "mojo/application/public/cpp/application_delegate.h"
#include "mojo/application/public/cpp/application_test_base.h"
#include "mojo/application/public/cpp/interface_factory.h"
@@ -23,7 +23,7 @@ class ViewManagerInit;
class ViewManagerTestBase : public test::ApplicationTestBase,
public ApplicationDelegate,
public ViewManagerDelegate,
- public InterfaceFactory<ViewManagerClient> {
+ public InterfaceFactory<ViewTreeClient> {
public:
ViewManagerTestBase();
~ViewManagerTestBase() override;
@@ -59,9 +59,9 @@ class ViewManagerTestBase : public test::ApplicationTestBase,
void OnEmbed(View* root) override;
void OnViewManagerDestroyed(ViewManager* view_manager) override;
- // InterfaceFactory<ViewManagerClient>:
+ // InterfaceFactory<ViewTreeClient>:
void Create(ApplicationConnection* connection,
- InterfaceRequest<ViewManagerClient> request) override;
+ InterfaceRequest<ViewTreeClient> request) override;
// Used to receive the most recent view manager loaded by an embed action.
ViewManager* most_recent_view_manager_;

Powered by Google App Engine
This is Rietveld 408576698