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

Unified Diff: ash/mus/accelerators/accelerator_registrar_impl.h

Issue 2182633011: Replaces ::ui:: with ui:: in ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « ash/common/wm/overview/window_selector.cc ('k') | ash/mus/accelerators/accelerator_registrar_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/accelerators/accelerator_registrar_impl.h
diff --git a/ash/mus/accelerators/accelerator_registrar_impl.h b/ash/mus/accelerators/accelerator_registrar_impl.h
index 6816ab1a4b839fa4df542fb022bd51abcd9e5d74..e21b8d6e90ed531ab469d4f7425550250d7f8dbb 100644
--- a/ash/mus/accelerators/accelerator_registrar_impl.h
+++ b/ash/mus/accelerators/accelerator_registrar_impl.h
@@ -27,7 +27,7 @@ class WindowManager;
// connection. This manages its own lifetime, and destroys itself when the
// AcceleratorRegistrar and all its AcceleratorHandlers are disconnected. Upon
// destruction, it calls the DestroyCallback.
-class AcceleratorRegistrarImpl : public ::ui::mojom::AcceleratorRegistrar,
+class AcceleratorRegistrarImpl : public ui::mojom::AcceleratorRegistrar,
public WindowManagerObserver,
public AcceleratorHandler,
public ui::AcceleratorTarget {
@@ -57,13 +57,13 @@ class AcceleratorRegistrarImpl : public ::ui::mojom::AcceleratorRegistrar,
// If |matcher| identifies a key-binding accelerator registers it and
// returns true, returns false otherwise.
bool AddAcceleratorForKeyBinding(uint32_t accelerator_id,
- const ::ui::mojom::EventMatcher& matcher,
+ const ui::mojom::EventMatcher& matcher,
const AddAcceleratorCallback& callback);
- // ::ui::mojom::AcceleratorRegistrar:
- void SetHandler(::ui::mojom::AcceleratorHandlerPtr handler) override;
+ // ui::mojom::AcceleratorRegistrar:
+ void SetHandler(ui::mojom::AcceleratorHandlerPtr handler) override;
void AddAccelerator(uint32_t accelerator_id,
- ::ui::mojom::EventMatcherPtr matcher,
+ ui::mojom::EventMatcherPtr matcher,
const AddAcceleratorCallback& callback) override;
void RemoveAccelerator(uint32_t accelerator_id) override;
@@ -79,7 +79,7 @@ class AcceleratorRegistrarImpl : public ::ui::mojom::AcceleratorRegistrar,
bool CanHandleAccelerators() const override;
WindowManager* window_manager_;
- ::ui::mojom::AcceleratorHandlerPtr accelerator_handler_;
+ ui::mojom::AcceleratorHandlerPtr accelerator_handler_;
mojo::Binding<AcceleratorRegistrar> binding_;
uint16_t accelerator_namespace_;
// Only contains non-keyboard accelerators.
« no previous file with comments | « ash/common/wm/overview/window_selector.cc ('k') | ash/mus/accelerators/accelerator_registrar_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698