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

Unified Diff: chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc

Issue 2523053004: Enhance chrome.app.window API for shelf integration with restore support (Closed)
Patch Set: Review v4 Created 4 years 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
Index: chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
index 799faab25f88f3e0a7726ff31e4358ddbc1a311a..58c26d7ae8697804de27841c09d51ebb832f1909 100644
--- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
+++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
@@ -31,6 +31,15 @@ void ChromeLauncherController::LaunchApp(const std::string& app_id,
launcher_controller_helper_->LaunchApp(app_id, source, event_flags);
}
+void ChromeLauncherController::LaunchAppWithLaunchId(
+ const std::string& app_id,
+ const std::string& launch_id,
+ ash::LaunchSource source,
+ int event_flags) {
+ launcher_controller_helper_->LaunchAppWithLaunchId(app_id, launch_id, source,
+ event_flags);
+}
+
ChromeLauncherController::ChromeLauncherController() : observer_binding_(this) {
DCHECK(!instance_);
instance_ = this;

Powered by Google App Engine
This is Rietveld 408576698