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

Unified Diff: ios/chrome/browser/ui/webui/mojo_web_ui_ios_controller.h

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 | « headless/lib/browser/headless_web_contents_impl.cc ('k') | ios/web/public/test/test_web_state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/webui/mojo_web_ui_ios_controller.h
diff --git a/ios/chrome/browser/ui/webui/mojo_web_ui_ios_controller.h b/ios/chrome/browser/ui/webui/mojo_web_ui_ios_controller.h
index ce2577b470141ecee6a7481534013aad1ef72456..a9c98071f6d2a160839d3a3352e2079a1bc7b419 100644
--- a/ios/chrome/browser/ui/webui/mojo_web_ui_ios_controller.h
+++ b/ios/chrome/browser/ui/webui/mojo_web_ui_ios_controller.h
@@ -20,8 +20,9 @@
// . Override BindUIHandler() to create and bind the implementation of the
// bindings.
template <typename Interface>
-class MojoWebUIIOSController : public web::WebUIIOSController,
- public shell::InterfaceFactory<Interface> {
+class MojoWebUIIOSController
+ : public web::WebUIIOSController,
+ public service_manager::InterfaceFactory<Interface> {
public:
explicit MojoWebUIIOSController(web::WebUIIOS* web_ui)
: web::WebUIIOSController(web_ui) {
@@ -33,8 +34,8 @@ class MojoWebUIIOSController : public web::WebUIIOSController,
virtual void BindUIHandler(mojo::InterfaceRequest<Interface> request) = 0;
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<Interface> request) override {
BindUIHandler(std::move(request));
}
« no previous file with comments | « headless/lib/browser/headless_web_contents_impl.cc ('k') | ios/web/public/test/test_web_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698