Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1062)

Unified Diff: ash/mus/shelf_delegate_mus.cc

Issue 2290603002: Enhance chrome.app.window API for shelf integration with pinning support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: LauncherItemController Unit Tests Fix after Rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/mus/shelf_delegate_mus.h ('k') | ash/shelf/shelf_view_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/shelf_delegate_mus.cc
diff --git a/ash/mus/shelf_delegate_mus.cc b/ash/mus/shelf_delegate_mus.cc
index 3f6292bb387fb7f3d51406b5e20c4e2a61716412..fdb2bdeaf0076d25c14ae1395c6344cc5a2102f7 100644
--- a/ash/mus/shelf_delegate_mus.cc
+++ b/ash/mus/shelf_delegate_mus.cc
@@ -201,6 +201,12 @@ ShelfID ShelfDelegateMus::GetShelfIDForAppID(const std::string& app_id) {
return 0;
}
+ShelfID ShelfDelegateMus::GetShelfIDForAppIDAndLaunchID(
+ const std::string& app_id,
+ const std::string& launch_id) {
+ return ShelfDelegateMus::GetShelfIDForAppID(app_id);
+}
+
bool ShelfDelegateMus::HasShelfIDToAppIDMapping(ShelfID id) const {
return shelf_id_to_app_id_.count(id) != 0;
}
« no previous file with comments | « ash/mus/shelf_delegate_mus.h ('k') | ash/shelf/shelf_view_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698