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

Unified Diff: ui/base/accelerators/accelerator_manager_delegate.h

Issue 2586333003: Make mash register initial batch of accelerators in single shot. (Closed)
Patch Set: Fix comments. Move inline function to .h Created 3 years, 11 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 | « ui/base/accelerators/accelerator_manager.cc ('k') | ui/base/accelerators/accelerator_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/accelerators/accelerator_manager_delegate.h
diff --git a/ui/base/accelerators/accelerator_manager_delegate.h b/ui/base/accelerators/accelerator_manager_delegate.h
index e3c6d9ccf6e53ebee773c721a1374ae0b03e18c0..4cbd0ed52d9afbd71374e02fd7587b6ff3e3dbfe 100644
--- a/ui/base/accelerators/accelerator_manager_delegate.h
+++ b/ui/base/accelerators/accelerator_manager_delegate.h
@@ -13,11 +13,14 @@ class Accelerator;
class UI_BASE_EXPORT AcceleratorManagerDelegate {
public:
- // Called the first time a target is registered for |accelerator|. This is
- // only called the first time a target is registered for a unique accelerator.
- // For example, if Register() is called twice with the same accelerator
- // this is called only for the first call.
- virtual void OnAcceleratorRegistered(const Accelerator& accelerator) = 0;
+ // Called when new accelerators are registered. This is only called with
+ // newly registered accelerators. For example, if Register() is
+ // called with A and B, then OnAcceleratorsRegistered() is called with A and
+ // B. If Register() is subsequently called with A and C, then
+ // OnAcceleratorsRegistered() is only called with C, as A was already
+ // registered.
+ virtual void OnAcceleratorsRegistered(
+ const std::vector<ui::Accelerator>& accelerators) = 0;
// Called when there no more targets are registered for |accelerator|.
virtual void OnAcceleratorUnregistered(const Accelerator& accelerator) = 0;
« no previous file with comments | « ui/base/accelerators/accelerator_manager.cc ('k') | ui/base/accelerators/accelerator_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698