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

Unified Diff: shell/android/keyboard_impl.h

Issue 1067173003: Remove mojo:: part of mojo::shell:: nested namespace in //shell. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 8 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: shell/android/keyboard_impl.h
diff --git a/shell/android/keyboard_impl.h b/shell/android/keyboard_impl.h
index e40b7dd46322b49e7198b13947da5e206eb48f8d..f633c6075a755925b813cc983dde77f270674b50 100644
--- a/shell/android/keyboard_impl.h
+++ b/shell/android/keyboard_impl.h
@@ -11,25 +11,23 @@
#include "mojo/public/cpp/bindings/strong_binding.h"
#include "mojo/services/keyboard/public/interfaces/keyboard.mojom.h"
-namespace mojo {
namespace shell {
-class KeyboardImpl : public Keyboard {
+class KeyboardImpl : public mojo::Keyboard {
public:
- KeyboardImpl(InterfaceRequest<Keyboard> request);
+ explicit KeyboardImpl(mojo::InterfaceRequest<mojo::Keyboard> request);
~KeyboardImpl();
- // Keyboard implementation
+ // mojo::Keyboard implementation
void Show() override;
void Hide() override;
private:
- StrongBinding<Keyboard> binding_;
+ mojo::StrongBinding<mojo::Keyboard> binding_;
};
bool RegisterKeyboardJni(JNIEnv* env);
} // namespace shell
-} // namespace mojo
#endif // SHELL_ANDROID_KEYBOARD_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698