| Index: chrome/browser/ui/ash/launcher/launcher_item_controller.h
|
| diff --git a/chrome/browser/ui/ash/launcher/launcher_item_controller.h b/chrome/browser/ui/ash/launcher/launcher_item_controller.h
|
| index 049e99d3ef8679b77b0e016902ed00137c0d57c5..45ac4015acbc641b6a46363c3863c7ebc12e1526 100644
|
| --- a/chrome/browser/ui/ash/launcher/launcher_item_controller.h
|
| +++ b/chrome/browser/ui/ash/launcher/launcher_item_controller.h
|
| @@ -76,7 +76,9 @@ class LauncherItemController {
|
| // windows associated with the item:
|
| // * One window: toggles the minimize state.
|
| // * Multiple windows: cycles the active window.
|
| - virtual void Clicked() = 0;
|
| + // The |event| is dispatched by a view, therefore the type of the
|
| + // event's target is |views::View|.
|
| + virtual void Clicked(const ui::Event& event) = 0;
|
|
|
| // Called when the controlled item is removed from the launcher.
|
| virtual void OnRemoved() = 0;
|
|
|