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

Unified Diff: ios/web/webui/web_ui_mojo_inttest.mm

Issue 2420253002: Rename shell namespace to service_manager (Closed)
Patch Set: . Created 4 years, 2 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 | « ios/web/webui/mojo_facade_unittest.mm ('k') | mash/app_driver/app_driver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/webui/web_ui_mojo_inttest.mm
diff --git a/ios/web/webui/web_ui_mojo_inttest.mm b/ios/web/webui/web_ui_mojo_inttest.mm
index 77d1c33339f8b3b8c8b9bcb7880e8d7deefab978..da7c3cf31a52880a23be3ad356778d18ace83c92 100644
--- a/ios/web/webui/web_ui_mojo_inttest.mm
+++ b/ios/web/webui/web_ui_mojo_inttest.mm
@@ -37,8 +37,9 @@ const char kTestWebUIURLHost[] = "testwebui";
// Once "fin" is received |IsFinReceived()| call will return true, indicating
// that communication was successful. See test WebUI page code here:
// ios/web/test/data/mojo_test.js
-class TestUIHandler : public TestUIHandlerMojo,
- public shell::InterfaceFactory<TestUIHandlerMojo> {
+class TestUIHandler
+ : public TestUIHandlerMojo,
+ public service_manager::InterfaceFactory<TestUIHandlerMojo> {
public:
TestUIHandler() {}
~TestUIHandler() override {}
@@ -68,8 +69,8 @@ class TestUIHandler : public TestUIHandlerMojo,
}
private:
- // shell::InterfaceFactory overrides.
- void Create(const shell::Identity& remote_identity,
+ // service_manager::InterfaceFactory overrides.
+ void Create(const service_manager::Identity& remote_identity,
mojo::InterfaceRequest<TestUIHandlerMojo> request) override {
bindings_.AddBinding(this, std::move(request));
}
« no previous file with comments | « ios/web/webui/mojo_facade_unittest.mm ('k') | mash/app_driver/app_driver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698