Index: ash/test/test_shelf_delegate.cc |
diff --git a/ash/test/test_shelf_delegate.cc b/ash/test/test_shelf_delegate.cc |
index 71e9538f1757a9441763e6e41b6595e233803453..7bf3c7fec70a8b2f96272af455b4dd50a20c7b6e 100644 |
--- a/ash/test/test_shelf_delegate.cc |
+++ b/ash/test/test_shelf_delegate.cc |
@@ -105,6 +105,12 @@ ShelfID TestShelfDelegate::GetShelfIDForAppID(const std::string& app_id) { |
return 0; |
} |
+ShelfID TestShelfDelegate::GetShelfIDForAppIDAndLaunchID( |
+ const std::string& app_id, |
+ const std::string& /* launch_id */) { |
James Cook
2016/09/01 04:27:51
nit: you don't need the /* */ -- we have unused pa
Andra Paraschiv
2016/09/01 08:27:25
Done.
|
+ return GetShelfIDForAppID(app_id); |
+} |
+ |
bool TestShelfDelegate::HasShelfIDToAppIDMapping(ShelfID id) const { |
return shelf_id_to_app_id_map_.find(id) != shelf_id_to_app_id_map_.end(); |
} |