| Index: ash/common/system/chromeos/palette/palette_tool_manager.h
|
| diff --git a/ash/common/system/chromeos/palette/palette_tool_manager.h b/ash/common/system/chromeos/palette/palette_tool_manager.h
|
| index 798624803784dff32ec90a2cead66a28f27c5760..c2375bd61bf96f5c3e272fa97c4efc490c86c792 100644
|
| --- a/ash/common/system/chromeos/palette/palette_tool_manager.h
|
| +++ b/ash/common/system/chromeos/palette/palette_tool_manager.h
|
| @@ -75,7 +75,7 @@ class ASH_EXPORT PaletteToolManager : public PaletteTool::Delegate {
|
|
|
| // Fetch the active tray icon for the given tool. Returns
|
| // gfx::VectorIconId::VECTOR_ICON_NONE if not available.
|
| - gfx::VectorIconId GetActiveTrayIcon(PaletteToolId tool_id);
|
| + const gfx::VectorIcon& GetActiveTrayIcon(PaletteToolId tool_id) const;
|
|
|
| // Create views for all of the registered tools.
|
| std::vector<PaletteToolView> CreateViews();
|
| @@ -91,7 +91,7 @@ class ASH_EXPORT PaletteToolManager : public PaletteTool::Delegate {
|
| void HidePalette() override;
|
| WmWindow* GetWindow() override;
|
|
|
| - PaletteTool* FindToolById(PaletteToolId tool_id);
|
| + PaletteTool* FindToolById(PaletteToolId tool_id) const;
|
|
|
| // Unowned pointer to the delegate to provide external functionality.
|
| Delegate* delegate_;
|
|
|