Chromium Code Reviews| Index: components/arc/test/fake_app_instance.h |
| diff --git a/components/arc/test/fake_app_instance.h b/components/arc/test/fake_app_instance.h |
| index 4557cad5739472ace60ddaf2bfd3100ae6dabe07..1d84e5cc634ca37fd428caac0775ea0c702e6080 100644 |
| --- a/components/arc/test/fake_app_instance.h |
| +++ b/components/arc/test/fake_app_instance.h |
| @@ -125,6 +125,9 @@ class FakeAppInstance : public mojom::AppInstance { |
| bool GenerateAndSendIcon(const mojom::AppInfo& app, |
| mojom::ScaleFactor scale_factor, |
| std::string* png_data_as_string); |
| + void GenerateAndSendBadIcon(const mojom::AppInfo& app, |
| + mojom::ScaleFactor scale_factor, |
| + std::string* png_data_as_string); |
|
Luis Héctor Chávez
2017/03/15 20:28:52
can you convert this to a std::vector<uint8_t>*? s
lgcheng
2017/03/15 22:05:34
In fact the std::string* png_data_as_string is not
Luis Héctor Chávez
2017/03/15 22:49:50
I see, the removal of this parameter sgtm.
The ot
|
| void SendInstallShortcut(const mojom::ShortcutInfo& shortcuts); |
| void SendInstallShortcuts(const std::vector<mojom::ShortcutInfo>& shortcuts); |
| void SetTaskInfo(int32_t task_id, |