Chromium Code Reviews| Index: chrome/browser/ui/views/location_bar/icon_label_bubble_view.h |
| diff --git a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h |
| index 9d1812a681cfa1098835587e146c376161d064fd..d6313c7ddf13542d5c40f7c9ed079518f8663e04 100644 |
| --- a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h |
| +++ b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.h |
| @@ -67,12 +67,13 @@ class IconLabelBubbleView : public views::InkDropHostView { |
| // true if some handling was performed. |
| virtual bool OnActivate(const ui::Event& event); |
| - // views::View: |
| + // views::InkDropHostView: |
|
tapted
2016/11/29 03:22:51
this should still be View - we name the class that
Patti Lor
2016/11/30 05:11:34
Done - thanks, I was a little confused about this.
|
| gfx::Size GetPreferredSize() const override; |
| void Layout() override; |
| bool OnKeyPressed(const ui::KeyEvent& event) override; |
| bool OnKeyReleased(const ui::KeyEvent& event) override; |
| void OnNativeThemeChanged(const ui::NativeTheme* native_theme) override; |
| + void GetAccessibleNodeData(ui::AXNodeData* node_data) override; |
| void AddInkDropLayer(ui::Layer* ink_drop_layer) override; |
|
tapted
2016/11/29 03:22:51
However, there should be a comment before this --
Patti Lor
2016/11/30 05:11:34
Done.
|
| void RemoveInkDropLayer(ui::Layer* ink_drop_layer) override; |
| std::unique_ptr<views::InkDropHighlight> CreateInkDropHighlight() |